PostHog · Schema

Trigger

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
job_type string
job_id string
payload object
View JSON Schema on GitHub

JSON Schema

posthog-trigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Trigger",
  "title": "Trigger",
  "type": "object",
  "properties": {
    "job_type": {
      "type": "string",
      "readOnly": true
    },
    "job_id": {
      "type": "string",
      "readOnly": true
    },
    "payload": {
      "readOnly": true
    }
  },
  "required": [
    "job_id",
    "job_type",
    "payload"
  ]
}