{ "$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" ] }