Lithic · Schema

Category Balances

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
interest integer
principal integer
fees integer
View JSON Schema on GitHub

JSON Schema

lithic-category-balances-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/category_balances",
  "title": "Category Balances",
  "type": "object",
  "properties": {
    "interest": {
      "type": "integer"
    },
    "principal": {
      "type": "integer"
    },
    "fees": {
      "type": "integer"
    }
  },
  "required": [
    "interest",
    "principal",
    "fees"
  ]
}