index.ts 249 B

123456789101112131415
  1. import type {Vocabulary} from "../../types"
  2. import idKeyword from "./id"
  3. import refKeyword from "./ref"
  4. const core: Vocabulary = [
  5. "$schema",
  6. "$id",
  7. "$defs",
  8. "$vocabulary",
  9. "definitions",
  10. idKeyword,
  11. refKeyword,
  12. ]
  13. export default core