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