dLocal · Schema

dLocal Card Token

PaymentsPayoutsEmergingMarketsLatAmAfricaAsiaFXFintech

Properties

Name Type Description
card_id string
holder_name string
expiration_month integer
expiration_year integer
brand string
last4 string
country string
View JSON Schema on GitHub

JSON Schema

cards-card-token-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/d-local/main/json-schema/cards-card-token-schema.json",
  "title": "dLocal Card Token",
  "type": "object",
  "required": ["card_id", "brand", "last4"],
  "properties": {
    "card_id": {"type": "string"},
    "holder_name": {"type": "string"},
    "expiration_month": {"type": "integer"},
    "expiration_year": {"type": "integer"},
    "brand": {"type": "string"},
    "last4": {"type": "string"},
    "country": {"type": "string", "pattern": "^[A-Z]{2}$"}
  }
}