PostHog · Schema

ErrorTrackingBreakdownsQuery

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
breakdownProperties array
dateRange object
filterTestAccounts boolean
issueId string
kind string
maxValuesPerProperty integer
modifiers object Modifiers used when performing the query
response object
tags object
version number version of the node, used for schema migrations
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingbreakdownsquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingBreakdownsQuery",
  "title": "ErrorTrackingBreakdownsQuery",
  "additionalProperties": false,
  "properties": {
    "breakdownProperties": {
      "items": {
        "type": "string"
      },
      "title": "Breakdownproperties",
      "type": "array"
    },
    "dateRange": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/DateRange"
        }
      ],
      "nullable": true
    },
    "filterTestAccounts": {
      "default": null,
      "title": "Filtertestaccounts",
      "type": "boolean",
      "nullable": true
    },
    "issueId": {
      "title": "Issueid",
      "type": "string"
    },
    "kind": {
      "default": "ErrorTrackingBreakdownsQuery",
      "title": "Kind",
      "type": "string",
      "enum": [
        "ErrorTrackingBreakdownsQuery"
      ]
    },
    "maxValuesPerProperty": {
      "default": null,
      "title": "Maxvaluesperproperty",
      "type": "integer",
      "nullable": true
    },
    "modifiers": {
      "default": null,
      "description": "Modifiers used when performing the query",
      "allOf": [
        {
          "$ref": "#/components/schemas/HogQLQueryModifiers"
        }
      ],
      "nullable": true
    },
    "response": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorTrackingBreakdownsQueryResponse"
        }
      ],
      "nullable": true
    },
    "tags": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryLogTags"
        }
      ],
      "nullable": true
    },
    "version": {
      "default": null,
      "description": "version of the node, used for schema migrations",
      "title": "Version",
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "breakdownProperties",
    "issueId"
  ],
  "type": "object"
}