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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-25 08:04:43 +02:00
committed by Vladimír Gorej
parent 7f9ac83f16
commit aba7f986ad
6 changed files with 44 additions and 0 deletions

View File

@@ -157,6 +157,7 @@ export const isExpandable = (schema) => {
schema?.patternProperties ||
fn.hasKeyword(schema, "additionalProperties") ||
fn.hasKeyword(schema, "propertyNames") ||
fn.hasKeyword(schema, "unevaluatedItems") ||
schema?.description
)
}