{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/organization-custom-repository-role-update-schema", "title": "organization-custom-repository-role-update-schema", "type": "object", "properties": { "name": { "description": "The name of the custom role.", "type": "string" }, "description": { "description": "A short description about who this role is for or what permissions it grants.", "type": "string", "nullable": true }, "base_role": { "type": "string", "description": "The system role from which this role inherits permissions.", "enum": [ "read", "triage", "write", "maintain" ] }, "permissions": { "description": "A list of additional permissions included in this role.", "type": "array", "items": { "type": "string" } } } }