Nomba · Schema

ErrorResponse

PaymentsFintechBankingTransfersVirtual AccountsCheckoutCross-Border PaymentsCards

Properties

Name Type Description
code string Error status code.
description string Human-readable description of the error.
errors array List of specific error details.
View JSON Schema on GitHub

JSON Schema

nomba-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error status code."
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the error."
    },
    "errors": {
      "type": "array",
      "description": "List of specific error details.",
      "items": {
        "type": "string"
      }
    }
  }
}