UiPath · Schema

ODataJobCollection

OData collection response containing jobs

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
@odata.context string OData context URL
@odata.count integer Total number of matching records (when $count=true)
value array
View JSON Schema on GitHub

JSON Schema

orchestrator-o-data-job-collection-schema.json Raw ↑
{
  "$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-job-collection-schema.json",
  "title": "ODataJobCollection",
  "description": "OData collection response containing jobs",
  "type": "object",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "OData context URL",
      "example": "example-value"
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total number of matching records (when $count=true)",
      "example": 42
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Job"
      },
      "example": []
    }
  }
}