27 lines
538 B
JSON
27 lines
538 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Permissions on admin roles",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"read_admin_cicd": {
|
|
"type": "boolean"
|
|
},
|
|
"read_admin_monitoring": {
|
|
"type": "boolean"
|
|
},
|
|
"read_admin_subscription": {
|
|
"type": "boolean"
|
|
},
|
|
"read_admin_users": {
|
|
"type": "boolean"
|
|
},
|
|
"read_admin_groups": {
|
|
"type": "boolean"
|
|
},
|
|
"read_admin_projects": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|