flow2schema/tests/samples/primitives/schema.json

36 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"primitives::Type": {
"type": "object",
"properties": {
"a": {"type": "string"},
"b": {"type": "number"},
"c": {"type": "boolean"},
"d": {"type": "null"}
},
"required": ["a", "b", "c", "d"]
},
"primitives::Interface": {
"type": "object",
"properties": {
"a": {"type": "string"},
"b": {"type": "number"},
"c": {"type": "boolean"},
"d": {"type": "null"}
},
"required": ["a", "b", "c", "d"]
},
"primitives::Class": {
"type": "object",
"properties": {
"a": {"type": "string"},
"b": {"type": "number"},
"c": {"type": "boolean"},
"d": {"type": "null"}
},
"required": ["a", "b", "c", "d"]
}
}
}