PostHog · Schema

WebTrendsItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
bucket string
metrics object
View JSON Schema on GitHub

JSON Schema

posthog-webtrendsitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebTrendsItem",
  "title": "WebTrendsItem",
  "additionalProperties": false,
  "properties": {
    "bucket": {
      "title": "Bucket",
      "type": "string"
    },
    "metrics": {
      "$ref": "#/components/schemas/Metrics"
    }
  },
  "required": [
    "bucket",
    "metrics"
  ],
  "type": "object"
}