Alteryx · Schema
JobDetail
Detailed representation of an execution job
AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique job identifier |
| appId | string | Workflow application ID |
| createDateTime | string | Date and time the job was created |
| status | string | Current job status |
| disposition | string | Final disposition of the job |
| outputs | array | Output files generated by the job |
| messages | array | Messages generated during execution |
| priority | string | |
| workerTag | string | |
| runWithE2 | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "JobDetail",
"type": "object",
"description": "Detailed representation of an execution job",
"properties": {
"id": {
"type": "string",
"description": "Unique job identifier"
},
"appId": {
"type": "string",
"description": "Workflow application ID"
},
"createDateTime": {
"type": "string",
"description": "Date and time the job was created"
},
"status": {
"type": "string",
"description": "Current job status"
},
"disposition": {
"type": "string",
"description": "Final disposition of the job"
},
"outputs": {
"type": "array",
"description": "Output files generated by the job"
},
"messages": {
"type": "array",
"description": "Messages generated during execution"
},
"priority": {
"type": "string"
},
"workerTag": {
"type": "string"
},
"runWithE2": {
"type": "boolean"
}
}
}