persona-community-5/.pnpm-store/v3/files/c6/15dfbe3cc8077de5a68ec015239063065ec5ddca8d9f60174bbcdf8d582adab718f0d735bc4191923d2a3d7ff45983308c6cb01b916ff9c3b6ed5a01347ec2
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
496 B
Plaintext

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