Amazon GuardDuty · Schema

AccountDetail

Contains information about the account.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AccountId object
Email object
View JSON Schema on GitHub

JSON Schema

guardduty-account-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-account-detail-schema.json",
  "title": "AccountDetail",
  "description": "Contains information about the account.",
  "type": "object",
  "properties": {
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "xml": {
            "name": "accountId"
          },
          "description": "The member account ID."
        }
      ]
    },
    "Email": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Email"
        },
        {
          "xml": {
            "name": "email"
          },
          "description": "The email address of the member account."
        }
      ]
    }
  },
  "required": [
    "AccountId",
    "Email"
  ]
}