Last change
on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
698 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import type {Vocabulary} from "../types"
|
---|
| 2 | import coreVocabulary from "./core"
|
---|
| 3 | import validationVocabulary from "./validation"
|
---|
| 4 | import getApplicatorVocabulary from "./applicator"
|
---|
| 5 | import dynamicVocabulary from "./dynamic"
|
---|
| 6 | import nextVocabulary from "./next"
|
---|
| 7 | import unevaluatedVocabulary from "./unevaluated"
|
---|
| 8 | import formatVocabulary from "./format"
|
---|
| 9 | import {metadataVocabulary, contentVocabulary} from "./metadata"
|
---|
| 10 |
|
---|
| 11 | const draft2020Vocabularies: Vocabulary[] = [
|
---|
| 12 | dynamicVocabulary,
|
---|
| 13 | coreVocabulary,
|
---|
| 14 | validationVocabulary,
|
---|
| 15 | getApplicatorVocabulary(true),
|
---|
| 16 | formatVocabulary,
|
---|
| 17 | metadataVocabulary,
|
---|
| 18 | contentVocabulary,
|
---|
| 19 | nextVocabulary,
|
---|
| 20 | unevaluatedVocabulary,
|
---|
| 21 | ]
|
---|
| 22 |
|
---|
| 23 | export default draft2020Vocabularies
|
---|
Note:
See
TracBrowser
for help on using the repository browser.