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

@@ -7,6 +7,7 @@ import JSONSchema from "./components/JSONSchema/JSONSchema"
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 KeywordProperties from "./components/keywords/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -31,6 +32,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
Keyword$schema,
Keyword$vocabulary,
Keyword$id,
Keyword$anchor,
KeywordProperties,
KeywordType,
KeywordFormat,