Permission item
| name | data type | constraints | description |
|---|---|---|---|
| type | PermType | Permission type | |
| label | string | Label | |
| description | string | Description | |
| category | string | Category | |
| value | boolean | required boolean | Permission value. True if permission is granted, false if not |
| editable | boolean | required boolean | True, when the permission may be changed, false if not |
Example
{
"type" : "read",
"label" : "...",
"description" : "...",
"category" : "...",
"value" : true,
"editable" : true
}