PostHog · Schema

CustomChannelCondition

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
key object
op object
value object
View JSON Schema on GitHub

JSON Schema

posthog-customchannelcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomChannelCondition",
  "title": "CustomChannelCondition",
  "additionalProperties": false,
  "properties": {
    "id": {
      "title": "Id",
      "type": "string"
    },
    "key": {
      "$ref": "#/components/schemas/CustomChannelField"
    },
    "op": {
      "$ref": "#/components/schemas/CustomChannelOperator"
    },
    "value": {
      "default": null,
      "title": "Value",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      ],
      "nullable": true
    }
  },
  "required": [
    "id",
    "key",
    "op"
  ],
  "type": "object"
}