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

@@ -115,6 +115,7 @@ export const isExpandable = (schema) => {
return (
schema?.$schema ||
schema?.$vocabulary ||
schema?.$id ||
schema?.description ||
schema?.properties
)