Zeebe · JSON Structure

Zeebe Api Deployment Response Structure

DeploymentResponse schema from Zeebe REST API

Type: object Properties: 3
BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

DeploymentResponse is a JSON Structure definition published by Zeebe, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deploymentKey deployments tenantId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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