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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-21 14:43:45 +02:00
committed by Vladimír Gorej
parent 503aa19f36
commit a8e351f462
11 changed files with 77 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ import KeywordNot from "./components/keywords/Not/Not"
import KeywordIf from "./components/keywords/If/If"
import KeywordThen from "./components/keywords/Then/Then"
import KeywordElse from "./components/keywords/Else/Else"
import KeywordDependentSchemas from "./components/keywords/DependentSchemas/DependentSchemas"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
import KeywordTitle from "./components/keywords/Title/Title"
@@ -48,6 +49,7 @@ const JSONSchema202012Plugin = () => ({
JSONSchema202012KeywordIf: KeywordIf,
JSONSchema202012KeywordThen: KeywordThen,
JSONSchema202012KeywordElse: KeywordElse,
JSONSchema202012KeywordDependentSchemas: KeywordDependentSchemas,
JSONSchema202012KeywordProperties: KeywordProperties,
JSONSchema202012KeywordType: KeywordType,
JSONSchema202012KeywordFormat: KeywordFormat,