Microsoft Dynamics NAV · Schema
ScheduledJob
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| category | string | The job category |
| status | string | The job status |
| description | string | The job description |
| errorMessage | string | Error message if the job failed |
| startDateTime | string | |
| endDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScheduledJob",
"title": "ScheduledJob",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"example": "abc123"
},
"category": {
"type": "string",
"description": "The job category",
"example": "example_value"
},
"status": {
"type": "string",
"description": "The job status",
"example": "example_value"
},
"description": {
"type": "string",
"description": "The job description",
"example": "A sample description."
},
"errorMessage": {
"type": "string",
"description": "Error message if the job failed",
"example": "example_value"
},
"startDateTime": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"endDateTime": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
}
}
}