Lithic · Schema

Funding Event Settlement

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
settled_gross_amount integer
network_settlement_date string
View JSON Schema on GitHub

JSON Schema

lithic-funding-event-settlement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/funding_event_settlement",
  "title": "Funding Event Settlement",
  "type": "object",
  "properties": {
    "settled_gross_amount": {
      "type": "integer",
      "format": "int64"
    },
    "network_settlement_date": {
      "type": "string",
      "example": "2024-01-01",
      "format": "date"
    }
  },
  "required": [
    "settled_gross_amount",
    "network_settlement_date"
  ]
}