PostHog · Schema

HogQLVariable

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
code_name string
isNull boolean
value object
variableId string
View JSON Schema on GitHub

JSON Schema

posthog-hogqlvariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HogQLVariable",
  "title": "HogQLVariable",
  "additionalProperties": false,
  "properties": {
    "code_name": {
      "title": "Code Name",
      "type": "string"
    },
    "isNull": {
      "default": null,
      "title": "Isnull",
      "type": "boolean",
      "nullable": true
    },
    "value": {
      "default": null,
      "title": "Value",
      "nullable": true
    },
    "variableId": {
      "title": "Variableid",
      "type": "string"
    }
  },
  "required": [
    "code_name",
    "variableId"
  ],
  "type": "object"
}