{ "$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" ] }