Lithic · Schema

Address Match Result

Lithic's evaluation result comparing the transaction's address data with the cardholder KYC data if it exists. In the event Lithic does not have any Cardholder KYC data, or the transaction does not contain any address data, NOT_PRESENT will be returned

FinTechBaaSCard IssuingPaymentsEmbedded Finance
View JSON Schema on GitHub

JSON Schema

lithic-address-match-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/address_match_result",
  "title": "Address Match Result",
  "description": "Lithic's evaluation result comparing the transaction's address data with the cardholder KYC data if it exists. In the event Lithic does not have any Cardholder KYC data, or the transaction does not contain any address data, NOT_PRESENT will be returned",
  "type": "string",
  "enum": [
    "MATCH",
    "MATCH_ADDRESS_ONLY",
    "MATCH_ZIP_ONLY",
    "MISMATCH",
    "NOT_PRESENT"
  ]
}