You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
496 B
17 lines
496 B
import type {Vocabulary} from "../types"
|
|
import coreVocabulary from "./core"
|
|
import validationVocabulary from "./validation"
|
|
import getApplicatorVocabulary from "./applicator"
|
|
import formatVocabulary from "./format"
|
|
import {metadataVocabulary, contentVocabulary} from "./metadata"
|
|
|
|
const draft7Vocabularies: Vocabulary[] = [
|
|
coreVocabulary,
|
|
validationVocabulary,
|
|
getApplicatorVocabulary(),
|
|
formatVocabulary,
|
|
metadataVocabulary,
|
|
contentVocabulary,
|
|
]
|
|
|
|
export default draft7Vocabularies
|
|
|