{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AbortRequest", "title": "AbortRequest", "type": "object", "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.", "properties": { "MessageReference": { "$ref": "#/components/schemas/MessageReference" }, "AbortReason": { "type": "string", "pattern": "^.+$", "description": "Reason of aborting a transaction." }, "DisplayOutput": { "$ref": "#/components/schemas/DisplayOutput" } }, "required": [ "MessageReference", "AbortReason" ] }