Files
cli/vendor/schemars/tests/expected/struct-tuple.json

22 lines
317 B
JSON
Raw Normal View History

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