Lithic · Schema

Limit With Progress

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
limit integer The limit amount
amount_originated integer Amount originated towards limit
View JSON Schema on GitHub

JSON Schema

lithic-limit-with-progress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/limit_with_progress",
  "title": "Limit With Progress",
  "type": "object",
  "properties": {
    "limit": {
      "description": "The limit amount",
      "type": "integer",
      "minimum": 0
    },
    "amount_originated": {
      "description": "Amount originated towards limit",
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "limit"
  ]
}