flow2schema/tests/samples/typeInMethod/schema.json

12 lines
338 B
JSON

{
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"typeInMethod::Test": {"type": "object", "properties": {}},
"typeInMethod::1::X": {
"type": "object",
"properties": {"t": {"$ref": "#/definitions/typeInMethod::Test"}},
"required": ["t"]
}
}
}