{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/orchestrator-o-data-role-collection-schema.json", "title": "ODataRoleCollection", "description": "OData collection response containing roles", "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "Id": { "type": "integer", "format": "int64", "description": "Unique role identifier" }, "Name": { "type": "string", "description": "Display name of the role" }, "DisplayName": { "type": "string", "description": "Human-readable display name for the role" }, "IsStatic": { "type": "boolean", "description": "Whether this is a built-in system role that cannot be deleted" } } }, "example": [] } } }