Autodesk · Schema
Job
Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| graphId | string | |
| status | string | |
| progress | number | Progress percentage (0-100). |
| createdAt | string | |
| startedAt | string | |
| completedAt | string | |
| error | string | Error message if job failed. |
| inputs | object | Input parameter values. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Job",
"title": "Job",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"graphId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"queued",
"running",
"succeeded",
"failed",
"cancelled"
]
},
"progress": {
"type": "number",
"description": "Progress percentage (0-100)."
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"startedAt": {
"type": "string",
"format": "date-time"
},
"completedAt": {
"type": "string",
"format": "date-time"
},
"error": {
"type": "string",
"description": "Error message if job failed."
},
"inputs": {
"type": "object",
"additionalProperties": true,
"description": "Input parameter values."
}
}
}