25 lines
No EOL
431 B
JSON
25 lines
No EOL
431 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "IndexMapTypes",
|
|
"type": "object",
|
|
"properties": {
|
|
"map": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"set": {
|
|
"type": "array",
|
|
"uniqueItems": true,
|
|
"items": {
|
|
"type": "integer",
|
|
"format": "int"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"map",
|
|
"set"
|
|
]
|
|
} |