{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RoleCredentials", "title": "RoleCredentials", "type": "object", "description": "Role-based credentials for accessing a database branch.", "properties": { "id": { "type": "string", "description": "The unique identifier of the role credentials." }, "name": { "type": "string", "description": "The name of the role." }, "role": { "type": "string", "description": "The access level of the role." }, "username": { "type": "string", "description": "The username for connecting." }, "password": { "type": "string", "description": "The password for connecting. Only returned during creation." }, "hostname": { "type": "string", "description": "The hostname for connecting." }, "created_at": { "type": "string", "format": "date-time", "description": "The timestamp when the role was created." } } }