Address:
  description: A representation of the consumer's address such as the shipping address for the ordered merchandise or the billing address associated with the consumer's payment card.
  type: object
  required:
    - street
    - city
    - postal_code
    - country
  properties:
    street:
      description: The street name and number or equivalent first line of the consumer's address.
      type: string
      minLength: 2
      maxLength: 50
      example: Arne Jacobsens Allé 7
    apartment:
      description: The apartment number or equivalent second line of the consumer's address.
      type: string
      minLength: 0
      maxLength: 50
      example: 5th floor
    city:
      description: The city of the consumer's address.
      type: string
      minLength: 2
      maxLength: 50
      example: Copenhagen S
    postal_code:
      description: The postal code or zip code of the consumer's address.
      type: string
      minLength: 2
      maxLength: 50
      example: 2300
    state:
      description: |
        The ISO 3166-2 code for the state or province in the consumer's address.
        Please note that the STATE_[ISO 3166-1 ALPHA 2 CODE] enums may be used to simplify passing of this value.
      type: string
      minLength: 0
      maxLength: 3
      example: CO
    country:
      description: The ISO 3166-1 numeric three-digit country code in the consumer's address.
      $ref: '../country/country_v1.yaml#/COUNTRY'
      example: 208