Lithic · Schema

CardProgram

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
account_level_management_enabled boolean Whether the card program is participating in Account Level Management. Currently applicable to Visa card programs only.
cardholder_currency string 3-character alphabetic ISO 4217 code for the currency of the cardholder.
created string Timestamp of when the card program was created.
name string The name of the card program.
pan_range_end string The first digits of the card number that this card program ends with.
pan_range_start string The first digits of the card number that this card program starts with.
settlement_currencies array List of 3-character alphabetic ISO 4217 codes for the currencies that the card program supports for settlement.
token string Globally unique identifier.
View JSON Schema on GitHub

JSON Schema

lithic-cardprogram-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardProgram",
  "title": "CardProgram",
  "properties": {
    "account_level_management_enabled": {
      "description": "Whether the card program is participating in Account Level Management. Currently applicable to Visa card programs only.",
      "type": "boolean"
    },
    "cardholder_currency": {
      "description": "3-character alphabetic ISO 4217 code for the currency of the cardholder.",
      "example": "USD",
      "type": "string"
    },
    "created": {
      "description": "Timestamp of when the card program was created.",
      "format": "date-time",
      "type": "string"
    },
    "name": {
      "description": "The name of the card program.",
      "example": "My Prepaid Program",
      "type": "string"
    },
    "pan_range_end": {
      "description": "The first digits of the card number that this card program ends with.",
      "example": "52304803",
      "type": "string"
    },
    "pan_range_start": {
      "description": "The first digits of the card number that this card program starts with.",
      "example": "52304803",
      "type": "string"
    },
    "settlement_currencies": {
      "description": "List of 3-character alphabetic ISO 4217 codes for the currencies that the card program supports for settlement.",
      "example": [
        "USD",
        "CAD"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "token": {
      "description": "Globally unique identifier.",
      "format": "uuid",
      "type": "string"
    }
  },
  "required": [
    "account_level_management_enabled",
    "created",
    "name",
    "pan_range_end",
    "pan_range_start",
    "token"
  ],
  "type": "object"
}