Activepieces · JSON Structure

Activepieces Flow Run Structure

A flow execution run

Type: object Properties: 9
AutomationNo-CodeOpen SourceWorkflowAI AgentsMCP

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

Properties

id created updated projectId flowId status startTime finishTime duration

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/activepieces/refs/heads/main/json-structure/activepieces-flow-run-structure.json",
  "name": "FlowRun",
  "description": "A flow execution run",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Flow run ID",
      "example": "run-abc123"
    },
    "created": {
      "type": "datetime",
      "description": "Run creation timestamp"
    },
    "updated": {
      "type": "datetime",
      "description": "Last update timestamp"
    },
    "projectId": {
      "type": "string",
      "description": "Project ID"
    },
    "flowId": {
      "type": "string",
      "description": "Flow ID"
    },
    "status": {
      "type": "string",
      "enum": [
        "RUNNING",
        "SUCCEEDED",
        "FAILED",
        "TIMEOUT",
        "STOPPED"
      ],
      "description": "Run status",
      "example": "SUCCEEDED"
    },
    "startTime": {
      "type": "datetime",
      "description": "Run start time"
    },
    "finishTime": {
      "type": "datetime",
      "description": "Run finish time"
    },
    "duration": {
      "type": "int32",
      "description": "Execution duration in milliseconds",
      "example": 1234
    }
  }
}