source: trip-planner-front/node_modules/ajv/lib/vocabularies/draft2020.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 698 bytes
Line 
1import type {Vocabulary} from "../types"
2import coreVocabulary from "./core"
3import validationVocabulary from "./validation"
4import getApplicatorVocabulary from "./applicator"
5import dynamicVocabulary from "./dynamic"
6import nextVocabulary from "./next"
7import unevaluatedVocabulary from "./unevaluated"
8import formatVocabulary from "./format"
9import {metadataVocabulary, contentVocabulary} from "./metadata"
10
11const draft2020Vocabularies: Vocabulary[] = [
12 dynamicVocabulary,
13 coreVocabulary,
14 validationVocabulary,
15 getApplicatorVocabulary(true),
16 formatVocabulary,
17 metadataVocabulary,
18 contentVocabulary,
19 nextVocabulary,
20 unevaluatedVocabulary,
21]
22
23export default draft2020Vocabularies
Note: See TracBrowser for help on using the repository browser.