{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/zeebe/refs/heads/main/json-structure/zeebe-api-publish-message-request-structure.json", "name": "PublishMessageRequest", "description": "PublishMessageRequest schema from Zeebe REST API", "type": "object", "properties": { "name": { "type": "string", "example": "Example Name" }, "correlationKey": { "type": "string", "example": "example-value" }, "timeToLive": { "type": "int64", "example": 100 }, "messageId": { "type": "string", "example": "500123" }, "variables": { "type": "object", "example": {} }, "tenantId": { "type": "string", "example": "500123" } }, "required": [ "name", "correlationKey" ] }