PostHog · Schema

CustomChannelRule

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
channel_type string
combiner object
id string
items array
View JSON Schema on GitHub

JSON Schema

posthog-customchannelrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomChannelRule",
  "title": "CustomChannelRule",
  "additionalProperties": false,
  "properties": {
    "channel_type": {
      "title": "Channel Type",
      "type": "string"
    },
    "combiner": {
      "$ref": "#/components/schemas/FilterLogicalOperator"
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "items": {
      "items": {
        "$ref": "#/components/schemas/CustomChannelCondition"
      },
      "title": "Items",
      "type": "array"
    }
  },
  "required": [
    "channel_type",
    "combiner",
    "id",
    "items"
  ],
  "type": "object"
}