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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-24 15:10:55 +02:00
committed by Vladimír Gorej
parent 31a1fed11e
commit a9dc6b0b05
10 changed files with 90 additions and 14 deletions

View File

@@ -34,6 +34,9 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
const KeywordItems = getComponent("JSONSchema202012KeywordItems")
const KeywordContains = getComponent("JSONSchema202012KeywordContains")
const KeywordProperties = getComponent("JSONSchema202012KeywordProperties")
const KeywordPatternProperties = getComponent(
"JSONSchema202012KeywordPatternProperties"
)
const KeywordType = getComponent("JSONSchema202012KeywordType")
const KeywordFormat = getComponent("JSONSchema202012KeywordFormat")
const KeywordTitle = getComponent("JSONSchema202012KeywordTitle")
@@ -73,6 +76,7 @@ const ModelsWrapper = createOnlyOAS31ComponentWrapper(({ getSystem }) => {
KeywordItems,
KeywordContains,
KeywordProperties,
KeywordPatternProperties,
KeywordType,
KeywordFormat,
KeywordTitle,