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
| Property | Type | Required | Description |
|---|---|---|---|
type | string | ✓ | |
cardType | cardTypeReference | ✓ | the type of card, like a credit card, ID card, etc. |
cardNumber | shortString | ✓ | number of the card, like ID number, credit card or bank account number |
description | shortString | description of the card | |
additionalNumber | shortString | additional number, like CVC code or IBAN code | |
endValidity | date | this 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"
}