PostHog · Schema

ErrorTrackingIssueAggregations

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
occurrences number
sessions number
users number
volumeRange array
volume_buckets array
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingissueaggregations-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingIssueAggregations",
  "title": "ErrorTrackingIssueAggregations",
  "additionalProperties": false,
  "properties": {
    "occurrences": {
      "title": "Occurrences",
      "type": "number"
    },
    "sessions": {
      "title": "Sessions",
      "type": "number"
    },
    "users": {
      "title": "Users",
      "type": "number"
    },
    "volumeRange": {
      "default": null,
      "title": "Volumerange",
      "items": {
        "type": "number"
      },
      "type": "array",
      "nullable": true
    },
    "volume_buckets": {
      "items": {
        "$ref": "#/components/schemas/VolumeBucket"
      },
      "title": "Volume Buckets",
      "type": "array"
    }
  },
  "required": [
    "occurrences",
    "sessions",
    "users",
    "volume_buckets"
  ],
  "type": "object"
}