Amazon GuardDuty · JSON Structure

Guardduty Account Detail Structure

Contains information about the account.

Type: object Properties: 2 Required: 2
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

AccountDetail is a JSON Structure definition published by Amazon GuardDuty, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AccountId Email

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-account-detail-structure.json",
  "name": "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"
  ]
}