{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-accept-invitation-request-schema.json", "title": "AcceptInvitationRequest", "description": "This input is deprecated, use AcceptAdministratorInvitationRequest instead", "type": "object", "properties": { "MasterId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "masterId" }, "description": "The account ID of the GuardDuty administrator account whose invitation you're accepting." } ] }, "InvitationId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "invitationId" }, "description": "The value that is used to validate the administrator account to the member account." } ] } }, "required": [ "MasterId", "InvitationId" ] }