Dynatrace · JSON Structure

Entities Api V2 Entity Collection Structure

A paginated collection of monitored entities.

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

EntityCollection 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 entities

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/entities-api-v2-entity-collection-structure.json",
  "description": "A paginated collection of monitored entities.",
  "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 entities matching the query.",
      "example": 500
    },
    "pageSize": {
      "type": "int32",
      "description": "The number of results returned on this page.",
      "example": 500
    },
    "entities": {
      "type": "array",
      "description": "The list of entities on this page.",
      "items": {
        "$ref": "#/components/schemas/Entity"
      },
      "example": [
        {
          "entityId": "abc123",
          "displayName": "Production Service",
          "type": "STANDARD",
          "firstSeenTms": 500,
          "lastSeenTms": 500,
          "properties": {},
          "tags": [
            {
              "context": "example-value",
              "key": "example-value",
              "value": "example-value",
              "stringRepresentation": "example-value"
            }
          ],
          "managementZones": [
            {
              "id": "abc123",
              "name": "Production Service"
            }
          ],
          "toRelationships": {},
          "fromRelationships": {}
        }
      ]
    }
  },
  "name": "EntityCollection"
}