schemars/schemars/tests/expected/struct-tuple.json
2019-09-08 14:20:57 +01:00

16 lines
No EOL
247 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Tuple",
"type": "array",
"items": [
{
"type": "integer",
"format": "int32"
},
{
"type": "boolean"
}
],
"maxItems": 2,
"minItems": 2
}