Dynatrace · JSON Structure

Entities Api V2 Entity Type Collection Structure

A paginated collection of entity type definitions.

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

EntityTypeCollection 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 types

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-type-collection-structure.json",
  "description": "A paginated collection of entity type definitions.",
  "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 entity types.",
      "example": 500
    },
    "types": {
      "type": "array",
      "description": "The list of entity types on this page.",
      "items": {
        "$ref": "#/components/schemas/EntityType"
      },
      "example": [
        {
          "type": "STANDARD",
          "displayName": "Production Service",
          "description": "Example description.",
          "properties": [
            {
              "id": "abc123",
              "displayName": "Production Service",
              "type": "STANDARD"
            }
          ],
          "fromRelationships": [
            {
              "id": "abc123",
              "toTypes": [
                {}
              ]
            }
          ],
          "toRelationships": [
            {
              "id": "abc123",
              "toTypes": [
                {}
              ]
            }
          ]
        }
      ]
    }
  },
  "name": "EntityTypeCollection"
}