Lithic · Schema

Category Tier

Rate and rate cap for interest on a category

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
rate string Interest rate for this category, e.g. '0.0525' for 5.25%
cap_rate string Maximum interest rate for this category, e.g. '0.0525' for 5.25%
View JSON Schema on GitHub

JSON Schema

lithic-category-tier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/category_tier",
  "title": "Category Tier",
  "description": "Rate and rate cap for interest on a category",
  "type": "object",
  "properties": {
    "rate": {
      "type": "string",
      "description": "Interest rate for this category, e.g. '0.0525' for 5.25%"
    },
    "cap_rate": {
      "type": "string",
      "description": "Maximum interest rate for this category, e.g. '0.0525' for 5.25%"
    }
  }
}