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

@@ -21,6 +21,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 KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
import KeywordTitle from "./components/keywords/Title/Title"
@@ -52,6 +53,7 @@ const JSONSchema202012Plugin = () => ({
JSONSchema202012KeywordElse: KeywordElse,
JSONSchema202012KeywordDependentSchemas: KeywordDependentSchemas,
JSONSchema202012KeywordPrefixItems: KeywordPrefixItems,
JSONSchema202012KeywordItems: KeywordItems,
JSONSchema202012KeywordProperties: KeywordProperties,
JSONSchema202012KeywordType: KeywordType,
JSONSchema202012KeywordFormat: KeywordFormat,