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

@@ -17,6 +17,7 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
"JSONSchema202012Keyword$dynamicAnchor"
)
const Keyword$ref = getComponent("JSONSchema202012Keyword$ref")
const Keyword$dynamicRef = getComponent("JSONSchema202012Keyword$dynamicRef")
const KeywordProperties = getComponent("JSONSchema202012KeywordProperties")
const KeywordType = getComponent("JSONSchema202012KeywordType")
const KeywordFormat = getComponent("JSONSchema202012KeywordFormat")
@@ -42,6 +43,7 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
Keyword$anchor,
Keyword$dynamicAnchor,
Keyword$ref,
Keyword$dynamicRef,
KeywordProperties,
KeywordType,
KeywordFormat,