PostHog · Schema

WebAnalyticsSampling

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
enabled boolean
forceSamplingRate object
View JSON Schema on GitHub

JSON Schema

posthog-webanalyticssampling-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebAnalyticsSampling",
  "title": "WebAnalyticsSampling",
  "additionalProperties": false,
  "properties": {
    "enabled": {
      "default": null,
      "title": "Enabled",
      "type": "boolean",
      "nullable": true
    },
    "forceSamplingRate": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/SamplingRate"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}