AI-generated Key Takeaways
-
Payment card account information includes details like account number, cardholder name, and potentially expiry, CVN, and issuance dates.
-
The JSON representation provides a structured format for storing and exchanging payment card data.
-
While account number and cardholder name are required, other fields like expiry, CVN, and issuance dates are optional.
-
Google may include the CVN if collected from the user for verification purposes.
Description of a payment card account (i.e., credit card, debit card, charge card).
JSON representation |
---|
{ "accountNumber": string, "nameOnCard": string, "expiryMonth": string, "expiryYear": string, "cvn": string, "issuanceDateMonth": string, "issuanceDateYear": string } |
Fields | |
---|---|
accountNumber |
REQUIRED: The account number itself (i.e., the FPAN). |
nameOnCard |
REQUIRED: The customer's name as it appears on the card. |
expiryMonth |
OPTIONAL: Expiration month, formatted |
expiryYear |
OPTIONAL: Expiration year, formatted |
cvn |
OPTIONAL: If Google collected the CVN from the user it is provided here and should be verified. |
issuanceDateMonth |
OPTIONAL: Issuance month, formatted |
issuanceDateYear |
OPTIONAL: Issuance year, formatted |