Unkey · Schema

V2DeployDeploymentStep

API KeysRate LimitingAuthenticationDeveloper PlatformAccess ControlIdentityAnalytics

Properties

Name Type Description
status string Step status
message string Step message
errorMessage string Error message if step failed
createdAt integer Unix timestamp in milliseconds
View JSON Schema on GitHub

JSON Schema

unkey-v2deploydeploymentstep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/V2DeployDeploymentStep",
  "title": "V2DeployDeploymentStep",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Step status",
      "example": "completed"
    },
    "message": {
      "type": "string",
      "description": "Step message",
      "example": "Image pulled successfully"
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message if step failed",
      "example": "Connection timeout"
    },
    "createdAt": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp in milliseconds",
      "example": 1704067200000
    }
  }
}