index.ts 274 B

12345678910111213141516
  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. {keyword: "$comment"},
  10. "definitions",
  11. idKeyword,
  12. refKeyword,
  13. ]
  14. export default core