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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-24 13:49:36 +02:00
committed by Vladimír Gorej
parent 6bc26b9666
commit e27107a285
6 changed files with 89 additions and 5 deletions

View File

@@ -21,6 +21,7 @@ import KeywordIf from "./components/keywords/If"
import KeywordThen from "./components/keywords/Then"
import KeywordElse from "./components/keywords/Else"
import KeywordDependentSchemas from "./components/keywords/DependentSchemas"
import KeywordPrefixItems from "./components/keywords/PrefixItems"
import KeywordProperties from "./components/keywords/Properties/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -59,6 +60,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
KeywordThen,
KeywordElse,
KeywordDependentSchemas,
KeywordPrefixItems,
KeywordProperties,
KeywordType,
KeywordFormat,