SumUp · Schema

CreateReaderCheckoutError

Error description

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
errors object
View JSON Schema on GitHub

JSON Schema

createreadercheckouterror.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateReaderCheckoutError",
  "description": "Error description",
  "type": "object",
  "properties": {
    "errors": {
      "type": "object",
      "properties": {
        "detail": {
          "description": "Error message",
          "type": "string"
        },
        "type": {
          "description": "Error code",
          "type": "string"
        }
      },
      "required": [
        "type"
      ]
    }
  },
  "required": [
    "errors"
  ]
}