Dynatrace · Schema
ProblemCollection
A paginated collection of problems.
AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability
Properties
| Name | Type | Description |
|---|---|---|
| nextPageKey | string | Cursor for the next page of results. Null if no more pages. |
| totalCount | integer | The total number of problems matching the query. |
| pageSize | integer | The number of results returned on this page. |
| problems | array | The list of problems on this page. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/problems-api-v2-problem-collection-schema.json",
"title": "ProblemCollection",
"description": "A paginated collection of problems.",
"type": "object",
"properties": {
"nextPageKey": {
"type": "string",
"description": "Cursor for the next page of results. Null if no more pages.",
"nullable": true,
"example": "example-value"
},
"totalCount": {
"type": "integer",
"format": "int64",
"description": "The total number of problems matching the query.",
"example": 500
},
"pageSize": {
"type": "integer",
"description": "The number of results returned on this page.",
"example": 500
},
"problems": {
"type": "array",
"description": "The list of problems on this page.",
"items": {
"$ref": "#/components/schemas/Problem"
},
"example": [
{
"problemId": "abc123",
"displayId": "abc123",
"title": "example-value",
"severityLevel": "AVAILABILITY",
"status": "OPEN",
"startTime": 1718153645993,
"endTime": 1718153645993,
"affectedEntities": [
{
"entityId": "abc123",
"name": "Production Service",
"type": "STANDARD"
}
],
"impactedEntities": [
{
"entityId": "abc123",
"name": "Production Service",
"type": "STANDARD"
}
],
"rootCauseEntity": "example-value",
"managementZones": [
{
"id": "abc123",
"name": "Production Service"
}
],
"problemFilters": [
{
"id": "abc123",
"name": "Production Service"
}
]
}
]
}
}
}