{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountEvent", "title": "AccountEvent", "properties": { "event": { "description": "The event.\n>Permitted values: `InactivateAccount`, `RefundNotPaidOutTransfers`.\nFor more information, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-process).", "enum": [ "InactivateAccount", "RefundNotPaidOutTransfers" ], "type": "string" }, "executionDate": { "description": "The date on which the event will take place.", "format": "date-time", "type": "string" }, "reason": { "description": "The reason why this event has been created.", "type": "string" } }, "type": "object" }