Properties
| Name | Type | Description |
|---|---|---|
| mcc | string | The merchant category code. |
| merchantId | string | The merchant identifier. |
| nameLocation | object | Contains the merchant's name and location. |
| postalCode | string | The merchant postal code. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MerchantData",
"title": "MerchantData",
"properties": {
"mcc": {
"description": "The merchant category code.",
"type": "string"
},
"merchantId": {
"description": "The merchant identifier.",
"type": "string"
},
"nameLocation": {
"description": "Contains the merchant's name and location.",
"$ref": "#/components/schemas/NameLocation"
},
"postalCode": {
"description": "The merchant postal code.",
"type": "string"
}
}
}