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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-19 20:20:34 +02:00
committed by Vladimír Gorej
parent 19f58ef3f3
commit 628f029b3d
10 changed files with 41 additions and 3 deletions

View File

@@ -6,6 +6,7 @@ import KeywordProperties from "./components/keywords/Properties"
import Keyword$schema from "./components/keywords/$schema"
import Keyword$vocabulary from "./components/keywords/$vocabulary/$vocabulary"
import Keyword$id from "./components/keywords/$id"
import Keyword$anchor from "./components/keywords/$anchor"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
import KeywordTitle from "./components/keywords/Title/Title"
@@ -22,6 +23,7 @@ const JSONSchema202012Plugin = () => ({
JSONSchema202012Keyword$schema: Keyword$schema,
JSONSchema202012Keyword$vocabulary: Keyword$vocabulary,
JSONSchema202012Keyword$id: Keyword$id,
JSONSchema202012Keyword$anchor: Keyword$anchor,
JSONSchema202012KeywordProperties: KeywordProperties,
JSONSchema202012KeywordType: KeywordType,
JSONSchema202012KeywordFormat: KeywordFormat,