PostHog · Schema

InputsItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
value object
templating object
bytecode array
order integer
transpiled object
View JSON Schema on GitHub

JSON Schema

posthog-inputsitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InputsItem",
  "title": "InputsItem",
  "type": "object",
  "properties": {
    "value": {},
    "templating": {
      "$ref": "#/components/schemas/HogFunctionTemplatingEnum"
    },
    "bytecode": {
      "type": "array",
      "items": {},
      "readOnly": true
    },
    "order": {
      "type": "integer",
      "readOnly": true
    },
    "transpiled": {
      "readOnly": true
    }
  },
  "required": [
    "bytecode",
    "order",
    "transpiled"
  ]
}