SumUp · Schema

NotFound

404 Not Found

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
errors object
View JSON Schema on GitHub

JSON Schema

notfound.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NotFound",
  "description": "404 Not Found",
  "type": "object",
  "properties": {
    "errors": {
      "type": "object",
      "properties": {
        "detail": {
          "description": "Fuller message giving context to error",
          "type": "string"
        }
      },
      "required": [
        "detail"
      ]
    }
  },
  "example": {
    "errors": {
      "detail": "Not Found"
    }
  },
  "required": [
    "errors"
  ]
}