contentstack · Schema

Deployment

A deployment operation to a Launch environment.

Properties

Name Type Description
uid string Unique identifier of the deployment.
status string Current status of the deployment.
created_at string ISO 8601 timestamp when the deployment was created.
completed_at string ISO 8601 timestamp when the deployment completed.
View JSON Schema on GitHub

JSON Schema

contentstack-deployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Deployment",
  "title": "Deployment",
  "type": "object",
  "description": "A deployment operation to a Launch environment.",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier of the deployment."
    },
    "status": {
      "type": "string",
      "description": "Current status of the deployment.",
      "enum": [
        "queued",
        "building",
        "deploying",
        "live",
        "failed",
        "cancelled"
      ]
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the deployment was created."
    },
    "completed_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the deployment completed."
    }
  }
}