SumUp · Schema

Receipt Card

Payment card details displayed on the receipt.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
last_4_digits string Card last 4 digits.
type string Card Scheme.
View JSON Schema on GitHub

JSON Schema

receiptcard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Receipt Card",
  "description": "Payment card details displayed on the receipt.",
  "type": "object",
  "properties": {
    "last_4_digits": {
      "description": "Card last 4 digits.",
      "type": "string"
    },
    "type": {
      "description": "Card Scheme.",
      "type": "string"
    }
  }
}