Lithic · Schema

Challenge Response Unprocessable

Error response when a challenge cannot be completed because it has already been marked complete. Common causes include challenge timeout, too many attempts, or cancellation. Refer to the message parameter for the specific reason

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
message string Error message explaining why the challenge could not be completed
View JSON Schema on GitHub

JSON Schema

lithic-challenge-response-unprocessable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/challenge-response-unprocessable",
  "title": "Challenge Response Unprocessable",
  "type": "object",
  "description": "Error response when a challenge cannot be completed because it has already been marked complete. Common causes include challenge timeout, too many attempts, or cancellation. Refer to the message parameter for the specific reason",
  "properties": {
    "message": {
      "type": "string",
      "description": "Error message explaining why the challenge could not be completed"
    }
  },
  "required": [
    "message"
  ]
}