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

@@ -144,7 +144,8 @@ export const isExpandable = (schema) => {
schema?.prefixItems ||
schema?.items ||
schema?.contains ||
schema?.description ||
schema?.properties
schema?.properties ||
schema?.patternProperties ||
schema?.description
)
}