PostHog · Schema

_LogsSparklineResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array Time-bucketed log counts. Each bucket carries either `severity` or `service` depending on breakdown.
View JSON Schema on GitHub

JSON Schema

posthog-logssparklineresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsSparklineResponse",
  "title": "_LogsSparklineResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/_LogsSparklineBucket"
      },
      "description": "Time-bucketed log counts. Each bucket carries either `severity` or `service` depending on breakdown."
    }
  },
  "required": [
    "results"
  ]
}