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