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

@@ -15,6 +15,7 @@ import Keyword$defs from "./components/keywords/$defs/$defs"
import Keyword$comment from "./components/keywords/$comment"
import KeywordAllOf from "./components/keywords/AllOf/AllOf"
import KeywordAnyOf from "./components/keywords/AnyOf/AnyOf"
import KeywordOneOf from "./components/keywords/OneOf/OneOf"
import KeywordProperties from "./components/keywords/Properties/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -47,6 +48,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
Keyword$comment,
KeywordAllOf,
KeywordAnyOf,
KeywordOneOf,
KeywordProperties,
KeywordType,
KeywordFormat,