UpdateRoleRequest
Request to update a role
Properties
| Property | Type | Required | Description |
|---|---|---|---|
description |
string,null | No | |
name |
string,null | No | |
permissions |
array,null | No |
View JSON Schema
{
"type": "object",
"description": "Request to update a role",
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"permissions": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
}
}