PostHog · Schema

EndpointsUsageOverviewQuery

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
compareFilter object Compare to previous period
dateRange object
endpointNames array Filter to specific endpoints by name
kind string
materializationType object Filter by materialization type
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-endpointsusageoverviewquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointsUsageOverviewQuery",
  "title": "EndpointsUsageOverviewQuery",
  "additionalProperties": false,
  "properties": {
    "compareFilter": {
      "default": null,
      "description": "Compare to previous period",
      "allOf": [
        {
          "$ref": "#/components/schemas/CompareFilter"
        }
      ],
      "nullable": true
    },
    "dateRange": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/DateRange"
        }
      ],
      "nullable": true
    },
    "endpointNames": {
      "default": null,
      "description": "Filter to specific endpoints by name",
      "title": "Endpointnames",
      "items": {
        "type": "string"
      },
      "type": "array",
      "nullable": true
    },
    "kind": {
      "default": "EndpointsUsageOverviewQuery",
      "title": "Kind",
      "type": "string",
      "enum": [
        "EndpointsUsageOverviewQuery"
      ]
    },
    "materializationType": {
      "default": null,
      "description": "Filter by materialization type",
      "allOf": [
        {
          "$ref": "#/components/schemas/MaterializationType"
        }
      ],
      "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/EndpointsUsageOverviewQueryResponse"
        }
      ],
      "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
    }
  },
  "type": "object"
}