DeploymentResponse schema from Zeebe REST API
{ "$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" } } }