PostHog · Schema

EventsHeatMapColumnAggregationResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
column integer
value integer
View JSON Schema on GitHub

JSON Schema

posthog-eventsheatmapcolumnaggregationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventsHeatMapColumnAggregationResult",
  "title": "EventsHeatMapColumnAggregationResult",
  "additionalProperties": false,
  "properties": {
    "column": {
      "title": "Column",
      "type": "integer"
    },
    "value": {
      "title": "Value",
      "type": "integer"
    }
  },
  "required": [
    "column",
    "value"
  ],
  "type": "object"
}