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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-19 19:32:12 +02:00
committed by Vladimír Gorej
parent 679698b998
commit 19f58ef3f3
8 changed files with 37 additions and 0 deletions

View File

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