flow2schema/tests/samples/shape/schema.json

15 lines
406 B
JSON

{
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"shape::X": {
"type": "object",
"properties": {"x": {"type": "string"}, "y": {"type": "boolean"}},
"required": ["x", "y"]
},
"shape::Y": {
"type": "object",
"properties": {"x": {"type": "string"}, "y": {"type": "boolean"}}
}
}
}