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

@@ -123,6 +123,7 @@ export const isExpandable = (schema) => {
schema?.$defs ||
schema?.$comment ||
schema?.allOf ||
schema?.anyOf ||
schema?.description ||
schema?.properties
)