{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ErrorTrackingGroupingRuleAssigneeRequest",
"title": "ErrorTrackingGroupingRuleAssigneeRequest",
"type": "object",
"properties": {
"type": {
"allOf": [
{
"$ref": "#/components/schemas/AssigneeTypeEnum"
}
],
"description": "Assignee type. Use `user` for a user ID or `role` for a role UUID.\n\n* `user` - user\n* `role` - role"
},
"id": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string",
"format": "uuid"
}
],
"description": "User ID when `type` is `user`, or role UUID when `type` is `role`."
}
},
"required": [
"id",
"type"
]
}