Lithic · Schema

Related Account Tokens

Account tokens related to a payment transaction

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
business_account_token stringnull Globally unique identifier for the business account
account_token stringnull Globally unique identifier for the account
View JSON Schema on GitHub

JSON Schema

lithic-related-account-tokens-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/related_account_tokens",
  "title": "Related Account Tokens",
  "description": "Account tokens related to a payment transaction",
  "type": "object",
  "properties": {
    "business_account_token": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "title": "Business Account Token",
      "description": "Globally unique identifier for the business account"
    },
    "account_token": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "title": "Account Token",
      "description": "Globally unique identifier for the account"
    }
  },
  "required": [
    "business_account_token",
    "account_token"
  ]
}