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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-24 13:58:54 +02:00
committed by Vladimír Gorej
parent e27107a285
commit 1f1f045b2b
6 changed files with 39 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ 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 KeywordItems from "./components/keywords/Items"
import KeywordProperties from "./components/keywords/Properties/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -61,6 +62,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
KeywordElse,
KeywordDependentSchemas,
KeywordPrefixItems,
KeywordItems,
KeywordProperties,
KeywordType,
KeywordFormat,