PostHog · Schema

EventTaxonomyQuery

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
actionId integer
event string
kind string
limit integer Number of rows to return
maxPropertyValues integer
modifiers object Modifiers used when performing the query
offset integer Number of rows to skip before returning rows
properties array
response object
tags object
version number version of the node, used for schema migrations
View JSON Schema on GitHub

JSON Schema

posthog-eventtaxonomyquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventTaxonomyQuery",
  "title": "EventTaxonomyQuery",
  "additionalProperties": false,
  "properties": {
    "actionId": {
      "default": null,
      "title": "Actionid",
      "type": "integer",
      "nullable": true
    },
    "event": {
      "default": null,
      "title": "Event",
      "type": "string",
      "nullable": true
    },
    "kind": {
      "default": "EventTaxonomyQuery",
      "title": "Kind",
      "type": "string",
      "enum": [
        "EventTaxonomyQuery"
      ]
    },
    "limit": {
      "default": null,
      "description": "Number of rows to return",
      "title": "Limit",
      "type": "integer",
      "nullable": true
    },
    "maxPropertyValues": {
      "default": null,
      "title": "Maxpropertyvalues",
      "type": "integer",
      "nullable": true
    },
    "modifiers": {
      "default": null,
      "description": "Modifiers used when performing the query",
      "allOf": [
        {
          "$ref": "#/components/schemas/HogQLQueryModifiers"
        }
      ],
      "nullable": true
    },
    "offset": {
      "default": null,
      "description": "Number of rows to skip before returning rows",
      "title": "Offset",
      "type": "integer",
      "nullable": true
    },
    "properties": {
      "default": null,
      "title": "Properties",
      "items": {
        "type": "string"
      },
      "type": "array",
      "nullable": true
    },
    "response": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/EventTaxonomyQueryResponse"
        }
      ],
      "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"
}