PostHog · Schema
ErrorTrackingGroupingRuleCreateRequest
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| filters | object | Property-group filters that define which exceptions should be grouped into the same issue. |
| assignee | object | Optional user or role to assign to issues created by this grouping rule. |
| description | string | Optional human-readable description of what this grouping rule is for. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ErrorTrackingGroupingRuleCreateRequest",
"title": "ErrorTrackingGroupingRuleCreateRequest",
"type": "object",
"properties": {
"filters": {
"allOf": [
{
"$ref": "#/components/schemas/PropertyGroupFilterValue"
}
],
"description": "Property-group filters that define which exceptions should be grouped into the same issue."
},
"assignee": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorTrackingGroupingRuleAssigneeRequest"
}
],
"nullable": true,
"description": "Optional user or role to assign to issues created by this grouping rule."
},
"description": {
"type": "string",
"nullable": true,
"description": "Optional human-readable description of what this grouping rule is for."
}
},
"required": [
"filters"
]
}