Dynatrace · Schema

EnvironmentCollection

A paginated collection of environments.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
nextPageKey string Cursor for the next page of results.
totalCount integer The total number of environments in the account.
environments array The list of environments on this page.
View JSON Schema on GitHub

JSON Schema

account-management-api-environment-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/account-management-api-environment-collection-schema.json",
  "title": "EnvironmentCollection",
  "description": "A paginated collection of environments.",
  "type": "object",
  "properties": {
    "nextPageKey": {
      "type": "string",
      "description": "Cursor for the next page of results.",
      "nullable": true,
      "example": "example-value"
    },
    "totalCount": {
      "type": "integer",
      "format": "int64",
      "description": "The total number of environments in the account.",
      "example": 500
    },
    "environments": {
      "type": "array",
      "description": "The list of environments on this page.",
      "items": {
        "$ref": "#/components/schemas/Environment"
      },
      "example": [
        {
          "id": "abc123",
          "name": "Production Service",
          "status": "ACTIVE",
          "trial": true
        }
      ]
    }
  }
}