Zeebe · JSON Structure

Zeebe Api Process Instance Structure

ProcessInstance schema from Zeebe REST API

Type: object Properties: 5
BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

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

Properties

processInstanceKey processDefinitionKey bpmnProcessId version 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-process-instance-structure.json",
  "name": "ProcessInstance",
  "description": "ProcessInstance schema from Zeebe REST API",
  "type": "object",
  "properties": {
    "processInstanceKey": {
      "type": "int64",
      "example": 100
    },
    "processDefinitionKey": {
      "type": "int64",
      "example": 100
    },
    "bpmnProcessId": {
      "type": "string",
      "example": "500123"
    },
    "version": {
      "type": "int32",
      "example": 100
    },
    "tenantId": {
      "type": "string",
      "example": "500123"
    }
  }
}