Dynatrace · JSON Structure

Problems Api V2 Problem Collection Structure

A paginated collection of problems.

Type: object Properties: 4
AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

ProblemCollection is a JSON Structure definition published by Dynatrace, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextPageKey totalCount pageSize problems

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-structure/problems-api-v2-problem-collection-structure.json",
  "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": "int64",
      "description": "The total number of problems matching the query.",
      "example": 500
    },
    "pageSize": {
      "type": "int32",
      "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"
            }
          ]
        }
      ]
    }
  },
  "name": "ProblemCollection"
}