OBJECT
Address
A mailing address
link GraphQL Schema definition
- type Address {
- # The first line of the address (street level)
- : String
- # The second line of the address (locality)
- : String
- # The third line of the address (town or city)
- : String
- # The building name
- : String
- # A care-of person's name
- : String
- # The country code (ONIX list 91)
- : ONIXCode
- # The department name
- : String
- # The organisation name
- : String
- # The post-office box name
- : String
- # The postal code
- : String
- # The sub-building name
- : String
- }