jsonschema2ddl
Version:
Convert JSON Schema to DDL
28 lines • 402 B
JSON
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"type": "object",
"a": {
"b": {
"c": {
"type": "object",
"properties": {
"col": {
"type": "string"
}
}
}
}
},
"x": {
"y": {
"z": {
"$ref": "#/a/b/c"
}
}
},
"properties": {
"banana": {
"$ref": "#/x/y/z"
}
}
}