PostHog · Schema

_LogsCountRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
query object The count query to execute.
View JSON Schema on GitHub

JSON Schema

posthog-logscountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsCountRequest",
  "title": "_LogsCountRequest",
  "type": "object",
  "properties": {
    "query": {
      "allOf": [
        {
          "$ref": "#/components/schemas/_LogsCountBody"
        }
      ],
      "description": "The count query to execute."
    }
  },
  "required": [
    "query"
  ]
}