Lithic · Schema

Interest Rate

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
effective_date string Date the rate goes into effect
rate string The rate in decimal format
View JSON Schema on GitHub

JSON Schema

lithic-interest-rate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/interest_rate",
  "title": "Interest Rate",
  "type": "object",
  "properties": {
    "effective_date": {
      "type": "string",
      "format": "date",
      "description": "Date the rate goes into effect"
    },
    "rate": {
      "type": "string",
      "description": "The rate in decimal format"
    }
  },
  "required": [
    "effective_date",
    "rate"
  ]
}