PostHog · Schema

BlastRadius

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
affected integer Number of users matching the filters
total integer Total number of users
View JSON Schema on GitHub

JSON Schema

posthog-blastradius-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlastRadius",
  "title": "BlastRadius",
  "type": "object",
  "properties": {
    "affected": {
      "type": "integer",
      "description": "Number of users matching the filters"
    },
    "total": {
      "type": "integer",
      "description": "Total number of users"
    }
  },
  "required": [
    "affected",
    "total"
  ]
}