schemars/schemars/tests/expected/transparent-struct.json

33 lines
No EOL
550 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "OuterStruct",
"type": "object",
"properties": {
"inner": {
"anyOf": [
{
"$ref": "#/$defs/InnerStruct"
},
{
"type": "null"
}
]
}
},
"$defs": {
"InnerStruct": {
"type": "array",
"prefixItems": [
{
"type": "string"
},
{
"type": "integer",
"format": "int32"
}
],
"minItems": 2,
"maxItems": 2
}
}
}