PostHog · Schema

WebAnalyticsExternalSummaryQuery

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
dateRange object
kind string
properties array
response object
version number version of the node, used for schema migrations
View JSON Schema on GitHub

JSON Schema

posthog-webanalyticsexternalsummaryquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebAnalyticsExternalSummaryQuery",
  "title": "WebAnalyticsExternalSummaryQuery",
  "additionalProperties": false,
  "properties": {
    "dateRange": {
      "$ref": "#/components/schemas/DateRange"
    },
    "kind": {
      "default": "WebAnalyticsExternalSummaryQuery",
      "title": "Kind",
      "type": "string",
      "enum": [
        "WebAnalyticsExternalSummaryQuery"
      ]
    },
    "properties": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/EventPropertyFilter"
          },
          {
            "$ref": "#/components/schemas/PersonPropertyFilter"
          },
          {
            "$ref": "#/components/schemas/SessionPropertyFilter"
          },
          {
            "$ref": "#/components/schemas/CohortPropertyFilter"
          }
        ]
      },
      "title": "Properties"
    },
    "response": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/WebAnalyticsExternalSummaryQueryResponse"
        }
      ],
      "nullable": true
    },
    "version": {
      "default": null,
      "description": "version of the node, used for schema migrations",
      "title": "Version",
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "dateRange",
    "properties"
  ],
  "type": "object"
}