PostHog · Schema

Merge

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type string
source object
target object
View JSON Schema on GitHub

JSON Schema

posthog-merge-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Merge",
  "title": "Merge",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true
    },
    "source": {
      "readOnly": true
    },
    "target": {
      "readOnly": true
    }
  },
  "required": [
    "source",
    "target",
    "type"
  ]
}