{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorTrackingAssignmentRuleCreateRequest", "title": "ErrorTrackingAssignmentRuleCreateRequest", "type": "object", "properties": { "filters": { "allOf": [ { "$ref": "#/components/schemas/PropertyGroupFilterValue" } ], "description": "Property-group filters that define when this rule matches incoming error events." }, "assignee": { "allOf": [ { "$ref": "#/components/schemas/ErrorTrackingAssignmentRuleAssigneeRequest" } ], "description": "User or role to assign matching issues to." } }, "required": [ "assignee", "filters" ] }