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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-21 08:38:47 +02:00
committed by Vladimír Gorej
parent ff2d4b2311
commit 15830794f1
9 changed files with 81 additions and 8 deletions

View File

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