Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the responder. |
| name | string | Name of the responder (for teams and schedules). |
| username | string | Username of the responder (for users). |
| type | string | Type of the responder entity. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Responder",
"title": "Responder",
"type": "object",
"required": [
"type"
],
"properties": {
"id": {
"type": "string",
"description": "ID of the responder."
},
"name": {
"type": "string",
"description": "Name of the responder (for teams and schedules)."
},
"username": {
"type": "string",
"description": "Username of the responder (for users)."
},
"type": {
"type": "string",
"enum": [
"team",
"user",
"escalation",
"schedule"
],
"description": "Type of the responder entity."
}
}
}