15 lines
233 B
JSON
15 lines
233 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "perms",
|
||
|
"definitions": {
|
||
|
"view": {
|
||
|
"type": "string",
|
||
|
"pattern": "^(view|manage)$"
|
||
|
},
|
||
|
"manage": {
|
||
|
"type": "string",
|
||
|
"pattern": "^(manage)$"
|
||
|
}
|
||
|
}
|
||
|
}
|