PostHog · Schema

QueryTiming

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
k string Key. Shortened to 'k' to save on data.
t number Time in seconds. Shortened to 't' to save on data.
View JSON Schema on GitHub

JSON Schema

posthog-querytiming-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryTiming",
  "title": "QueryTiming",
  "additionalProperties": false,
  "properties": {
    "k": {
      "description": "Key. Shortened to 'k' to save on data.",
      "title": "K",
      "type": "string"
    },
    "t": {
      "description": "Time in seconds. Shortened to 't' to save on data.",
      "title": "T",
      "type": "number"
    }
  },
  "required": [
    "k",
    "t"
  ],
  "type": "object"
}