Kong · Schema
RBACRole
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| comment | string | Additional comment or description for the RBAC role. |
| created_at | integer | Unix epoch when the resource was created. |
| id | string | A string representing a UUID (universally unique identifier). |
| is_default | boolean | Indicates whether the RBAC role is the default role. |
| name | string | The name of the RBAC role. |
| updated_at | integer | Unix epoch when the resource was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RBACRole",
"title": "RBACRole",
"x-speakeasy-entity": "RbacRole",
"type": "object",
"properties": {
"comment": {
"description": "Additional comment or description for the RBAC role.",
"type": "string",
"nullable": true
},
"created_at": {
"description": "Unix epoch when the resource was created.",
"type": "integer",
"nullable": true
},
"id": {
"description": "A string representing a UUID (universally unique identifier).",
"type": "string",
"nullable": true,
"x-speakeasy-param-suppress-computed-diff": true
},
"is_default": {
"description": "Indicates whether the RBAC role is the default role.",
"type": "boolean",
"default": false,
"nullable": true
},
"name": {
"description": "The name of the RBAC role.",
"type": "string",
"nullable": true
},
"updated_at": {
"description": "Unix epoch when the resource was last updated.",
"type": "integer",
"nullable": true
}
},
"additionalProperties": false,
"required": [
"name"
]
}