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

@@ -14,6 +14,7 @@ import Keyword$dynamicRef from "./components/keywords/$dynamicRef"
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 KeywordProperties from "./components/keywords/Properties/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -45,6 +46,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
Keyword$defs,
Keyword$comment,
KeywordAllOf,
KeywordAnyOf,
KeywordProperties,
KeywordType,
KeywordFormat,