automation-anywhere · Schema
WorkItem
A single unit of work in a queue, representing one data record to be processed by a bot
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the work item |
| queueId | integer | ID of the queue this work item belongs to |
| json | object | Key-value map of the work item's data payload matching the queue's work item model attributes |
| status | string | Current processing status of the work item |
| result | string | Processing result set by the bot upon completion |
| col1 | string | Display column 1 value extracted from the work item data |
| col2 | string | Display column 2 value extracted from the work item data |
| col3 | string | Display column 3 value extracted from the work item data |
| deviceId | integer | ID of the device that processed this work item |
| deviceUserId | integer | ID of the user account under which the work item was processed |
| automationId | string | Deployment ID of the automation that processed this work item |
| startTime | string | ISO 8601 timestamp when processing began |
| endTime | string | ISO 8601 timestamp when processing completed |
| comment | string | Optional comment added during processing |
| error | string | Error message if the work item processing failed |
| retryCount | integer | Number of times this work item has been retried |
| deferredUntil | string | ISO 8601 timestamp until which this work item is deferred |
| createdBy | integer | ID of the user who created this work item |
| createdOn | string | ISO 8601 timestamp when the work item was created |
| version | integer | Optimistic locking version number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkItem",
"title": "WorkItem",
"type": "object",
"description": "A single unit of work in a queue, representing one data record to be processed by a bot",
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "Unique identifier of the work item"
},
"queueId": {
"type": "integer",
"format": "int64",
"description": "ID of the queue this work item belongs to"
},
"json": {
"type": "object",
"description": "Key-value map of the work item's data payload matching the queue's work item model attributes",
"additionalProperties": true
},
"status": {
"type": "string",
"description": "Current processing status of the work item",
"enum": [
"NEW",
"IN_PROGRESS",
"FAILED",
"COMPLETE",
"DEFERRED"
]
},
"result": {
"type": "string",
"description": "Processing result set by the bot upon completion",
"enum": [
"SUCCESS",
"FAILURE"
]
},
"col1": {
"type": "string",
"description": "Display column 1 value extracted from the work item data"
},
"col2": {
"type": "string",
"description": "Display column 2 value extracted from the work item data"
},
"col3": {
"type": "string",
"description": "Display column 3 value extracted from the work item data"
},
"deviceId": {
"type": "integer",
"format": "int64",
"description": "ID of the device that processed this work item"
},
"deviceUserId": {
"type": "integer",
"format": "int64",
"description": "ID of the user account under which the work item was processed"
},
"automationId": {
"type": "string",
"description": "Deployment ID of the automation that processed this work item"
},
"startTime": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when processing began"
},
"endTime": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when processing completed"
},
"comment": {
"type": "string",
"description": "Optional comment added during processing"
},
"error": {
"type": "string",
"description": "Error message if the work item processing failed"
},
"retryCount": {
"type": "integer",
"description": "Number of times this work item has been retried"
},
"deferredUntil": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp until which this work item is deferred"
},
"createdBy": {
"type": "integer",
"format": "int64",
"description": "ID of the user who created this work item"
},
"createdOn": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the work item was created"
},
"version": {
"type": "integer",
"description": "Optimistic locking version number"
}
}
}