Lithic · Schema

TaxData

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
amount integernull The amount of tax collected.
exempt object
merchant_tax_id stringnull The tax ID of the merchant.
View JSON Schema on GitHub

JSON Schema

lithic-tax-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tax-data",
  "title": "TaxData",
  "type": "object",
  "properties": {
    "amount": {
      "title": "Amount",
      "description": "The amount of tax collected.",
      "type": [
        "integer",
        "null"
      ]
    },
    "exempt": {
      "title": "Exempt",
      "$ref": "#/components/schemas/tax-exempt-indicator"
    },
    "merchant_tax_id": {
      "title": "Merchant Tax ID",
      "description": "The tax ID of the merchant.",
      "type": [
        "string",
        "null"
      ]
    }
  }
}