Dynatrace · JSON Structure

Dynatrace Account Management Environment Structure

Represents a Dynatrace environment (tenant) associated with the account.

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

Environment is a JSON Structure definition published by Dynatrace, describing 4 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id name status trial

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Represents a Dynatrace environment (tenant) associated with the account.",
  "name": "Environment",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique environment identifier (tenant ID)."
    },
    "name": {
      "type": "string",
      "description": "The display name of the environment."
    },
    "status": {
      "type": "string",
      "description": "The current status of the environment.",
      "enum": [
        "ACTIVE",
        "SUSPENDED",
        "TRIAL"
      ]
    },
    "trial": {
      "type": "boolean",
      "description": "Whether the environment is a trial environment."
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}