TypePermissions Data Type

Properties
name data type constraints description
description string  
roles array of RoleItem  
type string  
id number  
editable boolean required boolean
channelId number  
label string  
perms array of TypePermissionItem  
children boolean required boolean

Example

{
  "description" : "...",
  "roles" : [ {
    "value" : true,
    "description" : "...",
    "editable" : true,
    "id" : 12345,
    "label" : "..."
  }, {
    "value" : true,
    "description" : "...",
    "editable" : true,
    "id" : 12345,
    "label" : "..."
  } ],
  "type" : "...",
  "id" : 12345,
  "editable" : true,
  "channelId" : 12345,
  "label" : "...",
  "perms" : [ {
    "value" : true,
    "editable" : true,
    "description" : "...",
    "label" : "...",
    "type" : "readtasks",
    "category" : "..."
  }, {
    "value" : true,
    "editable" : true,
    "description" : "...",
    "label" : "...",
    "type" : "createoverview",
    "category" : "..."
  } ],
  "children" : true
}