22 lines
317 B
JSON
22 lines
317 B
JSON
|
|
{
|
||
|
|
"$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
|
||
|
|
}
|