Dynatrace · JSON Structure

Problems Api V2 Comment Collection Structure

A paginated collection of problem comments.

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

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

Properties

nextPageKey totalCount comments

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-comment-collection-structure.json",
  "description": "A paginated collection of problem comments.",
  "type": "object",
  "properties": {
    "nextPageKey": {
      "type": "string",
      "description": "Cursor for the next page of results.",
      "nullable": true,
      "example": "example-value"
    },
    "totalCount": {
      "type": "int64",
      "description": "The total number of comments.",
      "example": 500
    },
    "comments": {
      "type": "array",
      "description": "The list of comments on this page.",
      "items": {
        "$ref": "#/components/schemas/Comment"
      },
      "example": [
        {
          "id": "abc123",
          "createdAtTimestamp": 1718153645993,
          "authorName": "Production Service",
          "content": "example-value",
          "context": "example-value"
        }
      ]
    }
  },
  "name": "CommentCollection"
}