PostHog · Schema

UserBlastRadiusResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
affected integer Number of entities matching the condition (users or groups depending on group_type_index)
total integer Total number of entities of this type in the project
View JSON Schema on GitHub

JSON Schema

posthog-userblastradiusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBlastRadiusResponse",
  "title": "UserBlastRadiusResponse",
  "type": "object",
  "properties": {
    "affected": {
      "type": "integer",
      "description": "Number of entities matching the condition (users or groups depending on group_type_index)"
    },
    "total": {
      "type": "integer",
      "description": "Total number of entities of this type in the project"
    }
  },
  "required": [
    "affected",
    "total"
  ]
}