PostHog · Schema

BlastRadiusRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
filters object Property filters to apply
group_type_index integer Group type index for group-based targeting
View JSON Schema on GitHub

JSON Schema

posthog-blastradiusrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlastRadiusRequest",
  "title": "BlastRadiusRequest",
  "type": "object",
  "properties": {
    "filters": {
      "type": "object",
      "additionalProperties": true,
      "description": "Property filters to apply"
    },
    "group_type_index": {
      "type": "integer",
      "nullable": true,
      "description": "Group type index for group-based targeting"
    }
  },
  "required": [
    "filters"
  ]
}