Lithic · Schema

Directional Limits

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
credit object Credit limits
debit object Debit limits
View JSON Schema on GitHub

JSON Schema

lithic-directional-limits-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/directional_limits",
  "title": "Directional Limits",
  "type": "object",
  "properties": {
    "credit": {
      "description": "Credit limits",
      "$ref": "#/components/schemas/limit_with_progress"
    },
    "debit": {
      "description": "Debit limits",
      "$ref": "#/components/schemas/limit_with_progress"
    }
  },
  "required": [
    "credit",
    "debit"
  ]
}