feat(json-schema-2020-12): add support for dynamicRef keyword

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-19 20:34:38 +02:00
committed by Vladimír Gorej
parent 6c5a126a46
commit 51a7f4eefd
6 changed files with 34 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import Keyword$id from "./components/keywords/$id"
import Keyword$anchor from "./components/keywords/$anchor"
import Keyword$dynamicAnchor from "./components/keywords/$dynamicAnchor"
import Keyword$ref from "./components/keywords/$ref"
import Keyword$dynamicRef from "./components/keywords/$dynamicRef"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
import KeywordTitle from "./components/keywords/Title/Title"
@@ -28,6 +29,7 @@ const JSONSchema202012Plugin = () => ({
JSONSchema202012Keyword$anchor: Keyword$anchor,
JSONSchema202012Keyword$dynamicAnchor: Keyword$dynamicAnchor,
JSONSchema202012Keyword$ref: Keyword$ref,
JSONSchema202012Keyword$dynamicRef: Keyword$dynamicRef,
JSONSchema202012KeywordProperties: KeywordProperties,
JSONSchema202012KeywordType: KeywordType,
JSONSchema202012KeywordFormat: KeywordFormat,