Mixpanel · Schema

PipelineRun

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
id string Run identifier
pipelineId string Parent pipeline ID
status string Run status
startTime string When the run started
endTime string When the run completed
recordsExported integer Number of records exported in this run
error string Error message if the run failed
View JSON Schema on GitHub

JSON Schema

mixpanel-pipelinerun-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipelineRun",
  "title": "PipelineRun",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Run identifier"
    },
    "pipelineId": {
      "type": "string",
      "description": "Parent pipeline ID"
    },
    "status": {
      "type": "string",
      "enum": [
        "running",
        "completed",
        "failed"
      ],
      "description": "Run status"
    },
    "startTime": {
      "type": "string",
      "format": "date-time",
      "description": "When the run started"
    },
    "endTime": {
      "type": "string",
      "format": "date-time",
      "description": "When the run completed"
    },
    "recordsExported": {
      "type": "integer",
      "description": "Number of records exported in this run"
    },
    "error": {
      "type": "string",
      "description": "Error message if the run failed"
    }
  }
}