Lithic · Schema

Amount Due

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
amount integer Payment due at the end of the billing period in cents. Negative amount indicates something is owed. If the amount owed is positive there was a net credit. If auto-collections are enabled this is the a
past_due integer Amount past due for statement in cents
View JSON Schema on GitHub

JSON Schema

lithic-amount-due-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/amount_due",
  "title": "Amount Due",
  "type": "object",
  "properties": {
    "amount": {
      "description": "Payment due at the end of the billing period in cents. Negative amount indicates something is owed. If the amount owed is positive there was a net credit. If auto-collections are enabled this is the amount that will be requested on the payment due date",
      "type": "integer"
    },
    "past_due": {
      "description": "Amount past due for statement in cents",
      "type": "integer"
    }
  },
  "required": [
    "amount",
    "past_due"
  ]
}