28 lines
412 B
JSON
28 lines
412 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"admin_ids": {
|
|
"anyOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"type": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|