draft7.ts 496 B

1234567891011121314151617
  1. import type {Vocabulary} from "../types"
  2. import coreVocabulary from "./core"
  3. import validationVocabulary from "./validation"
  4. import getApplicatorVocabulary from "./applicator"
  5. import formatVocabulary from "./format"
  6. import {metadataVocabulary, contentVocabulary} from "./metadata"
  7. const draft7Vocabularies: Vocabulary[] = [
  8. coreVocabulary,
  9. validationVocabulary,
  10. getApplicatorVocabulary(),
  11. formatVocabulary,
  12. metadataVocabulary,
  13. contentVocabulary,
  14. ]
  15. export default draft7Vocabularies