PostHog · Schema

InsightActorsQueryOptions

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

posthog-insightactorsqueryoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsightActorsQueryOptions",
  "title": "InsightActorsQueryOptions",
  "additionalProperties": false,
  "properties": {
    "kind": {
      "default": "InsightActorsQueryOptions",
      "title": "Kind",
      "type": "string",
      "enum": [
        "InsightActorsQueryOptions"
      ]
    },
    "response": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/InsightActorsQueryOptionsResponse"
        }
      ],
      "nullable": true
    },
    "source": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/InsightActorsQuery"
        },
        {
          "$ref": "#/components/schemas/FunnelsActorsQuery"
        },
        {
          "$ref": "#/components/schemas/FunnelCorrelationActorsQuery"
        },
        {
          "$ref": "#/components/schemas/StickinessActorsQuery"
        },
        {
          "$ref": "#/components/schemas/ExperimentActorsQuery"
        }
      ],
      "title": "Source"
    },
    "version": {
      "default": null,
      "description": "version of the node, used for schema migrations",
      "title": "Version",
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "source"
  ],
  "type": "object"
}