Lithic · Schema

error

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
debugging_request_id string Identifier to help debug an error.
message string Explanation of error response.
View JSON Schema on GitHub

JSON Schema

lithic-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/error",
  "title": "error",
  "type": "object",
  "properties": {
    "debugging_request_id": {
      "type": "string",
      "format": "uuid",
      "description": "Identifier to help debug an error."
    },
    "message": {
      "type": "string",
      "description": "Explanation of error response."
    }
  },
  "required": [
    "debugging_request_id",
    "message"
  ]
}