26 lines
355 B
JSON
26 lines
355 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"id",
|
||
|
"access_level",
|
||
|
"access_level_description"
|
||
|
],
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"access_level": {
|
||
|
"type": [
|
||
|
"integer",
|
||
|
"null"
|
||
|
]
|
||
|
},
|
||
|
"access_level_description": {
|
||
|
"type": [
|
||
|
"string",
|
||
|
"null"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|