Mastercard · Schema

ShortAddress

Address.

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
addressLine1 string The street detail for the address.
addressLine2 string The secondary street detail for the address.
regionCode string Region where merchant's legal office is located
city string City where merchant's legal office is located
postalCode string The zip/postal detail for the merchant's legal address
View JSON Schema on GitHub

JSON Schema

mastercard-ethoca-merchant-self-services-short-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ShortAddress",
  "type": "object",
  "description": "Address.",
  "properties": {
    "addressLine1": {
      "type": "string",
      "description": "The street detail for the address."
    },
    "addressLine2": {
      "type": "string",
      "description": "The secondary street detail for the address."
    },
    "regionCode": {
      "type": "string",
      "description": "Region where merchant's legal office is located"
    },
    "city": {
      "type": "string",
      "description": "City where merchant's legal office is located"
    },
    "postalCode": {
      "type": "string",
      "description": "The zip/postal detail for the merchant's legal address"
    }
  }
}