Dynatrace · Schema

EntityType

Defines an entity type including its display name, available properties, and supported relationship types.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
type string The entity type identifier, e.g., SERVICE.
displayName string The human-readable display name of the entity type.
description string A description of what this entity type represents.
properties array The list of properties available for this entity type.
fromRelationships array The relationship types where entities of this type are the source.
toRelationships array The relationship types where entities of this type are the target.
View JSON Schema on GitHub

JSON Schema

dynatrace-entities-v2-entity-type-schema.json Raw ↑
{
  "type": "object",
  "description": "Defines an entity type including its display name, available properties, and supported relationship types.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The entity type identifier, e.g., SERVICE.",
      "example": "STANDARD"
    },
    "displayName": {
      "type": "string",
      "description": "The human-readable display name of the entity type.",
      "example": "Production Service"
    },
    "description": {
      "type": "string",
      "description": "A description of what this entity type represents.",
      "example": "Example description."
    },
    "properties": {
      "type": "array",
      "description": "The list of properties available for this entity type.",
      "example": [
        {
          "id": "abc123",
          "displayName": "Production Service",
          "type": "STANDARD"
        }
      ],
      "items": {
        "type": "object",
        "description": "Describes a single property of an entity type.",
        "properties": {
          "id": {
            "type": "string",
            "description": "The property key identifier.",
            "example": "abc123"
          },
          "displayName": {
            "type": "string",
            "description": "The human-readable display name of the property.",
            "example": "Production Service"
          },
          "type": {
            "type": "string",
            "description": "The data type of the property value.",
            "example": "STANDARD"
          }
        }
      }
    },
    "fromRelationships": {
      "type": "array",
      "description": "The relationship types where entities of this type are the source.",
      "example": [
        {
          "id": "abc123",
          "toTypes": [
            {}
          ]
        }
      ],
      "items": {
        "type": "object",
        "description": "Describes a relationship type for an entity type.",
        "properties": {
          "id": {
            "type": "string",
            "description": "The relationship type identifier, e.g., runsOn.",
            "example": "abc123"
          },
          "toTypes": {
            "type": "array",
            "description": "The entity types that can participate in this relationship.",
            "example": [
              "STANDARD"
            ],
            "items": {
              "type": "string"
            }
          }
        }
      }
    },
    "toRelationships": {
      "type": "array",
      "description": "The relationship types where entities of this type are the target.",
      "example": [
        {
          "id": "abc123",
          "toTypes": [
            {}
          ]
        }
      ],
      "items": {
        "type": "object",
        "description": "Describes a relationship type for an entity type.",
        "properties": {
          "id": {
            "type": "string",
            "description": "The relationship type identifier, e.g., runsOn.",
            "example": "abc123"
          },
          "toTypes": {
            "type": "array",
            "description": "The entity types that can participate in this relationship.",
            "example": [
              "STANDARD"
            ],
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EntityType"
}