{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RBACUser", "title": "RBACUser", "x-speakeasy-entity": "RbacUser", "type": "object", "properties": { "comment": { "description": "Any comments associated with the user.", "type": "string", "nullable": true }, "created_at": { "description": "Unix epoch when the resource was created.", "type": "integer", "nullable": true }, "enabled": { "description": "Wether or not the user has RBAC enabled.", "type": "boolean", "default": true, "nullable": true }, "id": { "description": "A string representing a UUID (universally unique identifier).", "type": "string", "nullable": true }, "name": { "description": "The name of the user.", "type": "string", "nullable": true }, "updated_at": { "description": "Unix epoch when the resource was last updated.", "type": "integer", "nullable": true }, "user_token": { "type": "string", "nullable": true, "writeOnly": true }, "user_token_ident": { "description": "The user token.", "type": "string", "nullable": true } }, "additionalProperties": false, "required": [ "name", "user_token" ] }