Mastercard · Schema
Address
Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| addressLine1 | string | The first line of the street part in the structured address. |
| addressLine2 | string | The second line of the street part in the structured address. |
| addressCity | string | The name of the city in the structured address. |
| addressState | string | The state/province/parent subdivision code of the structured address. |
| addressPostCode | string | The postal code of the structured address. |
| addressCountry | string | The ISO-3166-1 numeric country code of the billing or shipping address requested by the cardholder. See: [ISO-3166](https://www.nationsonline.org/oneworld/country_code_list.htm). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Address",
"type": "object",
"properties": {
"addressLine1": {
"type": "string",
"description": "The first line of the street part in the structured address."
},
"addressLine2": {
"type": "string",
"description": "The second line of the street part in the structured address."
},
"addressCity": {
"type": "string",
"description": "The name of the city in the structured address."
},
"addressState": {
"type": "string",
"description": "The state/province/parent subdivision code of the structured address."
},
"addressPostCode": {
"type": "string",
"description": "The postal code of the structured address."
},
"addressCountry": {
"type": "string",
"description": "The ISO-3166-1 numeric country code of the billing or shipping address requested by the cardholder. See: [ISO-3166](https://www.nationsonline.org/oneworld/country_code_list.htm)."
}
}
}