Zeebe · Schema

DeploymentResponse

DeploymentResponse schema from Zeebe REST API

BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

Properties

Name Type Description
deploymentKey integer
deployments array
tenantId string
View JSON Schema on GitHub

JSON Schema

zeebe-api-deployment-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeploymentResponse",
  "description": "DeploymentResponse schema from Zeebe REST API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zeebe/refs/heads/main/json-schema/zeebe-api-deployment-response-schema.json",
  "type": "object",
  "properties": {
    "deploymentKey": {
      "type": "integer",
      "format": "int64",
      "example": 100
    },
    "deployments": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "example": [
        {}
      ]
    },
    "tenantId": {
      "type": "string",
      "example": "500123"
    }
  }
}