PostHog · Schema

Change

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type string
action string
field string
before object
after object
View JSON Schema on GitHub

JSON Schema

posthog-change-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Change",
  "title": "Change",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true
    },
    "action": {
      "type": "string",
      "readOnly": true
    },
    "field": {
      "type": "string",
      "readOnly": true
    },
    "before": {
      "readOnly": true
    },
    "after": {
      "readOnly": true
    }
  },
  "required": [
    "action",
    "after",
    "before",
    "field",
    "type"
  ]
}