flow2schema/tests/samples/keys/schema.json

12 lines
305 B
JSON

{
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"keys::X": {
"type": "object",
"properties": {"a": {"type": "string"}, "b": {"type": "boolean"}},
"required": ["a", "b"]
},
"keys::Y": {"enum": ["a", "b"]}
}
}