Webex · Schema

ExecutionStatus

* `COMPLETED` - Step or job has completed. * `STARTING` - Step or job is starting. * `STARTED` - Step or job is running. * `STOPPING` - Step or job is stopping. * `FAILED` - Step or job has failed with an error. * `ABANDONED` - Step or job has been abandone (manually stopped). * `UNKNOWN` - Step or job status is unknown.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
View JSON Schema on GitHub

JSON Schema

webex-executionstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutionStatus",
  "title": "ExecutionStatus",
  "type": "string",
  "enum": [
    "COMPLETED",
    "STARTING",
    "STARTED",
    "STOPPING",
    "FAILED",
    "ABANDONED",
    "UNKNOWN"
  ],
  "description": " * `COMPLETED` - Step or job has completed.\n * `STARTING` - Step or job is starting.\n * `STARTED` - Step or job is running.\n * `STOPPING` - Step or job is stopping.\n * `FAILED` - Step or job has failed with an error.\n * `ABANDONED` - Step or job has been abandone (manually stopped).\n * `UNKNOWN` - Step or job status is unknown.\n"
}