PostHog · Schema

Detail

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
changes array
merge object
trigger object
name string
short_id string
type string
View JSON Schema on GitHub

JSON Schema

posthog-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Detail",
  "title": "Detail",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "changes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Change"
      }
    },
    "merge": {
      "$ref": "#/components/schemas/Merge"
    },
    "trigger": {
      "$ref": "#/components/schemas/Trigger"
    },
    "name": {
      "type": "string",
      "readOnly": true
    },
    "short_id": {
      "type": "string",
      "readOnly": true
    },
    "type": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "name",
    "short_id",
    "type"
  ]
}