PostHog · Schema

TrendsFormulaNode

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
custom_name string Optional user-defined name for the formula
formula string
View JSON Schema on GitHub

JSON Schema

posthog-trendsformulanode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrendsFormulaNode",
  "title": "TrendsFormulaNode",
  "additionalProperties": false,
  "properties": {
    "custom_name": {
      "default": null,
      "description": "Optional user-defined name for the formula",
      "title": "Custom Name",
      "type": "string",
      "nullable": true
    },
    "formula": {
      "title": "Formula",
      "type": "string"
    }
  },
  "required": [
    "formula"
  ],
  "type": "object"
}