SumUp · Schema

CreateReaderTerminateUnprocessableEntity

Unprocessable entity

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
errors object
View JSON Schema on GitHub

JSON Schema

createreaderterminateunprocessableentity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateReaderTerminateUnprocessableEntity",
  "description": "Unprocessable entity",
  "type": "object",
  "properties": {
    "errors": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "example": {
    "ReaderOffline": {
      "description": "Error returned when the target device is not online.",
      "value": {
        "errors": {
          "detail": "The device is offline.",
          "type": "READER_OFFLINE"
        }
      }
    }
  },
  "required": [
    "errors"
  ]
}