Permission
Permission definition
Properties
| Property | Type | Required | Description |
|---|---|---|---|
action |
string | Yes | |
created_at |
string | Yes | |
description |
string,null | No | |
id |
string | Yes | |
name |
string | Yes | |
resource_type |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Permission definition",
"required": [
"id",
"name",
"resource_type",
"action",
"created_at"
],
"properties": {
"action": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"description": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}