{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-account-detail-schema.json", "title": "AccountDetail", "description": "Specifies the details of an account to associate with an Amazon Macie administrator account.", "type": "object", "properties": { "accountId": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The Amazon Web Services account ID for the account." } ] }, "email": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The email address for the account." } ] } }, "required": [ "email", "accountId" ] }