PostHog · Schema

EventsHeatMapRowAggregationResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

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