SumUp · Schema

Receipt

Receipt details for a transaction.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
transaction_data object
merchant_data object
emv_data object EMV-specific metadata returned for card-present payments.
acquirer_data object Acquirer-specific metadata related to the card authorization.
View JSON Schema on GitHub

JSON Schema

receipt.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Receipt",
  "description": "Receipt details for a transaction.",
  "type": "object",
  "properties": {
    "transaction_data": {
      "$ref": "#/components/schemas/ReceiptTransaction"
    },
    "merchant_data": {
      "$ref": "#/components/schemas/ReceiptMerchantData"
    },
    "emv_data": {
      "description": "EMV-specific metadata returned for card-present payments.",
      "type": "object",
      "example": {}
    },
    "acquirer_data": {
      "description": "Acquirer-specific metadata related to the card authorization.",
      "type": "object",
      "example": {
        "authorization_code": "053201",
        "return_code": "00"
      },
      "properties": {
        "tid": {
          "type": "string"
        },
        "authorization_code": {
          "type": "string"
        },
        "return_code": {
          "type": "string"
        },
        "local_time": {
          "type": "string"
        }
      }
    }
  }
}