{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Role", "title": "Role", "type": "object", "properties": { "id": { "type": "string", "description": "Role identifier" }, "name": { "type": "string", "description": "Role display name" }, "description": { "type": "string", "description": "Role description" }, "permissions": { "type": "array", "items": { "type": "string" }, "description": "Permissions granted by this role" } } }