{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-abort-request-schema.json", "title": "AbortRequest", "description": "It conveys Information requested for identification of the message request carrying the transaction to abort. A message to display on the CustomerError Device could be sent by the Sale System (DisplayOutput). Body of the Abort Request message.", "type": "object", "properties": { "MessageReference": { "$ref": "#/components/schemas/MessageReference" }, "AbortReason": { "type": "string", "pattern": "^.+$", "description": "Reason of aborting a transaction." }, "DisplayOutput": { "$ref": "#/components/schemas/DisplayOutput" } }, "required": [ "MessageReference", "AbortReason" ] }