card

November 12, 2025 · View on GitHub

Any kind of card that isn't a license, only provide the cards that are required

Type: object

semantics [{'transmodel': 'CUSTOMER PAYMENT MEANS, MEDIUM APPLICATION INSTANCE'}]


Properties overview

PropertyTypeRequiredDescription
typestring
cardTypecardTypeReferencethe type of card, like a credit card, ID card, etc.
cardNumbershortStringnumber of the card, like ID number, credit card or bank account number
descriptionshortStringdescription of the card
additionalNumbershortStringadditional number, like CVC code or IBAN code
endValiditydatethis card is valid until this date

Detailed Properties

  • type (string) - required
    value: "card"

  • cardType (cardTypeReference) - required
    the type of card, like a credit card, ID card, etc.

  • cardNumber (shortString) - required
    number of the card, like ID number, credit card or bank account number

  • description (shortString) - optional
    description of the card

  • additionalNumber (shortString) - optional
    additional number, like CVC code or IBAN code

  • endValidity (date) - optional
    this card is valid until this date

Example

{
  "type": "card",
  "cardType": "example-string",
  "cardNumber": "example-string",
  "description": "example-string",
  "additionalNumber": "example-string",
  "endValidity": "full-date"
}