Lithic · Schema

Credit Details

Breakdown of credits

FinTechBaaSCard IssuingPaymentsEmbedded Finance
View JSON Schema on GitHub

JSON Schema

lithic-credit-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/credit_details",
  "title": "Credit Details",
  "description": "Breakdown of credits",
  "type": "object",
  "patternProperties": {
    "^.*$": {
      "type": "object",
      "patternProperties": {
        "^.*$": {
          "type": "integer",
          "description": "Amount in cents for this credit category and event type combination"
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}