diff --git a/specs/paymentrequest.html b/specs/paymentrequest.html index 4c23d49f..ffbff2b0 100644 --- a/specs/paymentrequest.html +++ b/specs/paymentrequest.html @@ -1,7 +1,7 @@ - Payment Request API + Payment Request APIreg @@ -769,33 +769,34 @@

PaymentItem dictionary

ShippingAddress interface

         interface ShippingAddress {
-          readonly attribute DOMString regionCode;
+          readonly attribute DOMString country;
           readonly attribute FrozenArray<DOMString> addressLine;
-          readonly attribute DOMString administrativeArea;
-          readonly attribute DOMString locality;
+          readonly attribute DOMString region;
+          readonly attribute DOMString city;
           readonly attribute DOMString dependentLocality;
           readonly attribute DOMString postalCode;
           readonly attribute DOMString sortingCode;
           readonly attribute DOMString languageCode;
           readonly attribute DOMString organization;
           readonly attribute DOMString recipient;
+          readonly attribute DOMString careOf;
           readonly attribute DOMString phone;
         };
       
-
regionCode
+
country
This is the CLDR (Common Locale Data Repository) region code. For example, US, GB, CN, or JP.
addressLine
This is the most specific part of the address. It can include, for example, a street name, a house number, apartment number, a rural delivery route, descriptive instructions, or a post office box number.
-
administrativeArea
+
region
This is the top level administrative subdivision of the country. For example, this can be a state, a province, an oblast, or a prefecture.
-
locality
+
city
This is the city/town portion of the address.
dependentLocality
-
This is the dependent locality or sublocality. For example, used for neighborhoods, +
This is the dependent locality or sublocality within a city. For example, used for neighborhoods, boroughs, districts, or UK dependent localities.
postalCode
This is the postal code or ZIP code, also known as PIN code in India.
@@ -808,6 +809,9 @@

ShippingAddress interface

This is the organization, firm, company, or institution at this address.
recipient
This is the name of the recipient or contact person.
+
careOf
+
This is the name of an intermediary party or entity responsible for transferring + packages between the postal service and the recipient.
phone
This is the phone number of the recipient or contact person.