31 lines
573 B
JSON
31 lines
573 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"parent_role_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"active_flag": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"assignment_count": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"sub_role_count": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"level": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"description": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|