Webex · Schema
JobExecutionStatusObject1
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | number | Unique identifier that identifies each instance of the job. |
| lastUpdated | string | Last updated time (in UTC format) post one of the step execution completion. |
| statusMessage | string | Displays status for overall steps that are part of the job. |
| exitCode | string | Exit Code for a job. |
| createdTime | string | Job creation time in UTC format. |
| timeElapsed | string | Time lapsed since the job execution started. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobExecutionStatusObject1",
"title": "JobExecutionStatusObject1",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "number",
"description": "Unique identifier that identifies each instance of the job."
},
"lastUpdated": {
"type": "string",
"description": "Last updated time (in UTC format) post one of the step execution completion."
},
"statusMessage": {
"type": "string",
"description": "Displays status for overall steps that are part of the job."
},
"exitCode": {
"type": "string",
"description": "Exit Code for a job."
},
"createdTime": {
"type": "string",
"description": "Job creation time in UTC format."
},
"timeElapsed": {
"type": "string",
"description": "Time lapsed since the job execution started."
}
}
}