Amazon GuardDuty · JSON Structure

Guardduty Member Structure

Contains information about the member account.

Type: object Properties: 8 Required: 5
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

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

Properties

AccountId DetectorId MasterId Email RelationshipStatus InvitedAt UpdatedAt AdministratorId

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-member-structure.json",
  "name": "Member",
  "description": "Contains information about the member account. ",
  "type": "object",
  "properties": {
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "xml": {
            "name": "accountId"
          },
          "description": "The ID of the member account."
        }
      ]
    },
    "DetectorId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DetectorId"
        },
        {
          "xml": {
            "name": "detectorId"
          },
          "description": "The detector ID of the member account."
        }
      ]
    },
    "MasterId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "masterId"
          },
          "description": "The administrator account ID."
        }
      ]
    },
    "Email": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Email"
        },
        {
          "xml": {
            "name": "email"
          },
          "description": "The email address of the member account."
        }
      ]
    },
    "RelationshipStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "relationshipStatus"
          },
          "description": "The status of the relationship between the member and the administrator."
        }
      ]
    },
    "InvitedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "invitedAt"
          },
          "description": "The timestamp when the invitation was sent."
        }
      ]
    },
    "UpdatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "updatedAt"
          },
          "description": "The last-updated timestamp of the member."
        }
      ]
    },
    "AdministratorId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "administratorId"
          },
          "description": "The administrator account ID."
        }
      ]
    }
  },
  "required": [
    "AccountId",
    "MasterId",
    "Email",
    "RelationshipStatus",
    "UpdatedAt"
  ]
}