Lithic · Schema

Liability Allocation

Current breakdown of how liability is allocated for the disputed amount

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
original_amount integer The initial amount disputed
recovered_amount integer The amount that has been recovered from the merchant through the dispute process
written_off_amount integer The amount the issuer has chosen to write off
denied_amount integer The amount that has been denied to the cardholder
remaining_amount integer Any disputed amount that is still outstanding, i.e. has not been recovered, written off, or denied
View JSON Schema on GitHub

JSON Schema

lithic-liability-allocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/liability-allocation",
  "title": "Liability Allocation",
  "description": "Current breakdown of how liability is allocated for the disputed amount",
  "type": "object",
  "properties": {
    "original_amount": {
      "description": "The initial amount disputed",
      "type": "integer"
    },
    "recovered_amount": {
      "description": "The amount that has been recovered from the merchant through the dispute process",
      "type": "integer"
    },
    "written_off_amount": {
      "description": "The amount the issuer has chosen to write off",
      "type": "integer"
    },
    "denied_amount": {
      "description": "The amount that has been denied to the cardholder",
      "type": "integer"
    },
    "remaining_amount": {
      "description": "Any disputed amount that is still outstanding, i.e. has not been recovered, written off, or denied",
      "type": "integer"
    }
  },
  "required": [
    "original_amount",
    "recovered_amount",
    "written_off_amount",
    "denied_amount",
    "remaining_amount"
  ]
}