PostHog · Schema

_LogsCountResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
count integer Number of log entries matching the filters.
View JSON Schema on GitHub

JSON Schema

posthog-logscountresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsCountResponse",
  "title": "_LogsCountResponse",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Number of log entries matching the filters."
    }
  },
  "required": [
    "count"
  ]
}