Lithic · Schema

Create External Bank Account Api Response

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

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

JSON Schema

lithic-create-external-bank-account-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/create_external_bank_account_error_response",
  "title": "Create External Bank Account Api Response",
  "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."
    },
    "context": {
      "description": "context",
      "$ref": "#/components/schemas/create_external_bank_account_error_response_context"
    }
  },
  "required": [
    "debugging_request_id",
    "message",
    "context"
  ]
}