Amazon · Schema

Address

Address schema from Amazon Pay API

AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

Properties

Name Type Description
name string
addressLine1 string
addressLine2 string
addressLine3 string
city string
stateOrRegion string
postalCode string
countryCode string
phoneNumber string
View JSON Schema on GitHub

JSON Schema

pay-address-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "addressLine1": {
      "type": "string"
    },
    "addressLine2": {
      "type": "string"
    },
    "addressLine3": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "stateOrRegion": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "countryCode": {
      "type": "string"
    },
    "phoneNumber": {
      "type": "string"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Address",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-schema/pay-address-schema.json",
  "description": "Address schema from Amazon Pay API"
}