Home
UiPath
Orchestrator Job Structure
Orchestrator Job Structure
Represents a single automation job execution instance
Type: object
Properties: 15
Automation Robotic Process Automation RPA Artificial Intelligence Document Processing Enterprise Automation Orchestration Testing
Job is a JSON Structure definition published by UiPath, describing 15 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
Id
Key
ReleaseName
ProcessVersion
State
Source
StartTime
EndTime
CreationTime
Info
HostMachineName
Robot
OrganizationUnitId
InputArguments
OutputArguments
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/orchestrator-job-structure.json",
"name": "Job",
"description": "Represents a single automation job execution instance",
"type": "object",
"properties": {
"Id": {
"type": "int64",
"description": "Unique integer identifier for the job",
"example": 12345
},
"Key": {
"type": "uuid",
"description": "Unique GUID key for the job",
"example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
"ReleaseName": {
"type": "string",
"description": "Name of the process (release) that this job executes",
"example": "Example Name"
},
"ProcessVersion": {
"type": "string",
"description": "Version of the process package used in this job",
"example": "1.0.0"
},
"State": {
"type": "string",
"enum": [
"Pending",
"Running",
"Stopping",
"Terminating",
"Faulted",
"Successful",
"Stopped",
"Suspended",
"Resumed"
],
"description": "Current execution state of the job",
"example": "Pending"
},
"Source": {
"type": "string",
"enum": [
"Manual",
"Schedule",
"Queue"
],
"description": "How the job was initiated",
"example": "Manual"
},
"StartTime": {
"type": "datetime",
"description": "ISO 8601 timestamp when the job started executing",
"example": "2026-01-15T10:30:00Z"
},
"EndTime": {
"type": "datetime",
"description": "ISO 8601 timestamp when the job finished executing",
"example": "2026-01-15T10:30:00Z"
},
"CreationTime": {
"type": "datetime",
"description": "ISO 8601 timestamp when the job was created",
"example": "2026-01-15T10:30:00Z"
},
"Info": {
"type": "string",
"description": "Additional information or error message associated with the job state",
"example": "example-value"
},
"HostMachineName": {
"type": "string",
"description": "Name of the machine where the robot executed the job",
"example": "Example Name"
},
"Robot": {
"$ref": "#/components/schemas/RobotRef"
},
"OrganizationUnitId": {
"type": "int64",
"description": "ID of the folder in which this job resides",
"example": 12345
},
"InputArguments": {
"type": "string",
"description": "JSON-serialized input arguments passed to the process",
"example": "example-value"
},
"OutputArguments": {
"type": "string",
"description": "JSON-serialized output arguments returned by the process",
"example": "example-value"
}
}
}