UiPath · JSON Structure

Orchestrator O Data Schedule Collection Structure

OData collection response containing process schedules

Type: object Properties: 1
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

ODataScheduleCollection is a JSON Structure definition published by UiPath, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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": []
    }
  }
}