{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeploymentStatus", "title": "DeploymentStatus", "type": "string", "description": "The current status of a deployment operation. IN_PROGRESS indicates the operation is still running. COMPLETED indicates success. Other statuses indicate various error or review states.", "enum": [ "IN_PROGRESS", "COMPLETED", "COMPLETED_WITH_ERRORS", "COMPLETED_WITH_IMPORT_ERRORS", "COMPLETED_WITH_PUBLISH_ERRORS", "FAILED", "PENDING_REVIEW", "REJECTED" ] }