Properties
| Name | Type | Description |
|---|---|---|
| data | array | List of incidents. |
| paging | object | |
| took | number | Time taken in seconds. |
| requestId | string | Unique identifier for the request. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListIncidentsResponse",
"title": "ListIncidentsResponse",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Incident"
},
"description": "List of incidents."
},
"paging": {
"type": "object",
"properties": {
"next": {
"type": "string",
"description": "URL for the next page of results."
},
"first": {
"type": "string",
"description": "URL for the first page of results."
}
}
},
"took": {
"type": "number",
"description": "Time taken in seconds."
},
"requestId": {
"type": "string",
"description": "Unique identifier for the request."
}
}
}