mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
40 lines
641 B
JSON
40 lines
641 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "roles",
|
||
|
"definitions": {
|
||
|
"admin": {
|
||
|
"type": "object",
|
||
|
"required": ["scope", "roles"],
|
||
|
"properties": {
|
||
|
"scope": {
|
||
|
"type": "array",
|
||
|
"contains": {
|
||
|
"type": "string",
|
||
|
"pattern": "^user$"
|
||
|
}
|
||
|
},
|
||
|
"roles": {
|
||
|
"type": "array",
|
||
|
"contains": {
|
||
|
"type": "string",
|
||
|
"pattern": "^admin$"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"user": {
|
||
|
"type": "object",
|
||
|
"required": ["scope"],
|
||
|
"properties": {
|
||
|
"scope": {
|
||
|
"type": "array",
|
||
|
"contains": {
|
||
|
"type": "string",
|
||
|
"pattern": "^user$"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|