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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-21 08:30:14 +02:00
committed by Vladimír Gorej
parent f41c6ba0d7
commit ff2d4b2311
8 changed files with 85 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
const Keyword$defs = getComponent("JSONSchema202012Keyword$defs")
const Keyword$comment = getComponent("JSONSchema202012Keyword$comment")
const KeywordAllOf = getComponent("JSONSchema202012KeywordAllOf")
const KeywordAnyOf = getComponent("JSONSchema202012KeywordAnyOf")
const KeywordProperties = getComponent("JSONSchema202012KeywordProperties")
const KeywordType = getComponent("JSONSchema202012KeywordType")
const KeywordFormat = getComponent("JSONSchema202012KeywordFormat")
@@ -50,6 +51,7 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
Keyword$defs,
Keyword$comment,
KeywordAllOf,
KeywordAnyOf,
KeywordProperties,
KeywordType,
KeywordFormat,