OBJECT

Address

A mailing address

link GraphQL Schema definition

  • type Address {
  • # The first line of the address (street level)
  • addressLine1: String
  • # The second line of the address (locality)
  • addressLine2: String
  • # The third line of the address (town or city)
  • addressLine3: String
  • # The building name
  • building: String
  • # A care-of person's name
  • careOf: String
  • # The country code (ONIX list 91)
  • country: ONIXCode
  • # The department name
  • departmentName: String
  • # The organisation name
  • organisationName: String
  • # The post-office box name
  • postOfficeBox: String
  • # The postal code
  • postcode: String
  • # The sub-building name
  • subBuilding: String
  • }