RbacRole
Response after creating or updating a role
Properties
| Property | Type | Required | Description |
|---|---|---|---|
created_at |
string | Yes | |
description |
string,null | No | |
id |
string | Yes | |
is_built_in |
boolean | Yes | |
name |
string | Yes | |
permissions |
Array<string> | Yes |
View JSON Schema
{
"type": "object",
"description": "Response after creating or updating a role",
"required": [
"id",
"name",
"is_built_in",
"permissions",
"created_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"description": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"is_built_in": {
"type": "boolean"
},
"name": {
"type": "string"
},
"permissions": {
"type": "array",
"items": {
"type": "string"
}
}
}
}