Webex · Schema

stepExecutionStatusesObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id number Unique identifier that identifies each step in a job.
startTime string Step execution start time in UTC format.
endTime string Step execution end time in UTC format.
lastUpdated string Last updated time for a step in UTC format.
statusMessage string Displays the status of a step.
exitCode string Exit Code for a step.
name string Name of different steps the job goes through.
timeElapsed string Time lapsed since the step execution started.
View JSON Schema on GitHub

JSON Schema

webex-stepexecutionstatusesobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/stepExecutionStatusesObject",
  "title": "stepExecutionStatusesObject",
  "type": "object",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "number",
      "example": 1998857,
      "description": "Unique identifier that identifies each step in a job."
    },
    "startTime": {
      "type": "string",
      "example": "2024-03-13T03:58:36.886Z",
      "description": "Step execution start time in UTC format."
    },
    "endTime": {
      "type": "string",
      "example": "2024-03-13T03:58:48.471Z",
      "description": "Step execution end time in UTC format."
    },
    "lastUpdated": {
      "type": "string",
      "example": "2024-03-13T03:58:48.472Z",
      "description": "Last updated time for a step in UTC format."
    },
    "statusMessage": {
      "type": "string",
      "example": "COMPLETED",
      "description": "Displays the status of a step."
    },
    "exitCode": {
      "type": "string",
      "example": "COMPLETED",
      "description": "Exit Code for a step."
    },
    "name": {
      "type": "string",
      "example": "dynamicdevicesettingsUpdate",
      "description": "Name of different steps the job goes through."
    },
    "timeElapsed": {
      "type": "string",
      "example": "PT11.585S",
      "description": "Time lapsed since the step execution started."
    }
  }
}