{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/orchestrator-o-data-schedule-collection-structure.json", "name": "ODataScheduleCollection", "description": "OData collection response containing process schedules", "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "Id": { "type": "int64", "description": "Unique schedule identifier" }, "Name": { "type": "string", "description": "Schedule display name" }, "ReleaseId": { "type": "int64", "description": "ID of the process associated with this schedule" }, "Enabled": { "type": "boolean", "description": "Whether the schedule is active" }, "StartProcessCron": { "type": "string", "description": "Cron expression defining the recurrence pattern" } } }, "example": [] } } }