ProjectRoleOut schema from Roku Nabu Cloud
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/nabu-cloud-project-role-out-schema.json", "title": "ProjectRoleOut", "description": "ProjectRoleOut schema from Roku Nabu Cloud", "type": "object", "properties": { "project_role_id": { "type": "integer", "title": "Project Role Id" }, "name": { "type": "string", "title": "Name" }, "permissions": { "items": { "type": "string" }, "type": "array", "title": "Permissions" } }, "required": [ "project_role_id", "name", "permissions" ] }