{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://acceldata.io/schemas/role.json", "title": "Role", "type": "object", "description": "A role with associated permissions", "properties": { "id": { "type": "string", "description": "Role identifier" }, "name": { "type": "string", "description": "Role name" }, "description": { "type": "string", "description": "Role description" }, "permissions": { "type": "array", "description": "List of permissions assigned to this role", "items": { "type": "string" } } } }