Lithic · Schema

Amount

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
amount integer Amount in the smallest unit of the applicable currency (e.g., cents)
currency object
View JSON Schema on GitHub

JSON Schema

lithic-amount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/amount",
  "title": "Amount",
  "type": "object",
  "properties": {
    "amount": {
      "description": "Amount in the smallest unit of the applicable currency (e.g., cents)",
      "type": "integer"
    },
    "currency": {
      "$ref": "#/components/schemas/currency"
    }
  },
  "required": [
    "amount",
    "currency"
  ]
}