PostHog · Schema
Breakdown
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| group_type_index | integer | |
| histogram_bin_count | integer | |
| normalize_url | boolean | |
| property | object | |
| type | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Breakdown",
"title": "Breakdown",
"additionalProperties": false,
"properties": {
"group_type_index": {
"default": null,
"title": "Group Type Index",
"type": "integer",
"nullable": true
},
"histogram_bin_count": {
"default": null,
"title": "Histogram Bin Count",
"type": "integer",
"nullable": true
},
"normalize_url": {
"default": null,
"title": "Normalize Url",
"type": "boolean",
"nullable": true
},
"property": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Property"
},
"type": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/MultipleBreakdownType"
}
],
"nullable": true
}
},
"required": [
"property"
],
"type": "object"
}