Azure Monitor · Schema

SystemData

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
createdBy string
createdByType string
createdAt string
lastModifiedBy string
lastModifiedByType string
lastModifiedAt string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-systemdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SystemData",
  "title": "SystemData",
  "type": "object",
  "properties": {
    "createdBy": {
      "type": "string"
    },
    "createdByType": {
      "type": "string",
      "enum": [
        "User",
        "Application",
        "ManagedIdentity",
        "Key"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedBy": {
      "type": "string"
    },
    "lastModifiedByType": {
      "type": "string",
      "enum": [
        "User",
        "Application",
        "ManagedIdentity",
        "Key"
      ]
    },
    "lastModifiedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}