Files
kompendium/json-schema/src/test/resources/T0023__enriched_nested_reference.json
2023-01-04 21:32:31 -05:00

24 lines
393 B
JSON

{
"type": "object",
"properties": {
"amazingField": {
"type": "string"
},
"org": {
"type": "string"
},
"tables": {
"items": {
"$ref": "#/components/schemas/NestedComplexItem-table"
},
"description": "Collection of important items",
"type": "array"
}
},
"required": [
"amazingField",
"org",
"tables"
]
}