flow2schema/tests/samples/stringKeys/schema.json

21 lines
553 B
JSON

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