Lithic · Schema

Card Converted

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
card_token string The token of the card that was created.
View JSON Schema on GitHub

JSON Schema

lithic-card-converted-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/card-converted",
  "title": "Card Converted",
  "examples": [
    {
      "card_token": "00000000-0000-0000-0000-000000000001"
    }
  ],
  "properties": {
    "card_token": {
      "description": "The token of the card that was created.",
      "example": "00000000-0000-0000-0000-000000000001",
      "format": "uuid",
      "type": "string"
    }
  },
  "required": [
    "card_token"
  ],
  "type": "object"
}