{ "$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" }