Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • id: the unique name of this location as used in the REST API and in the menu links. This is alpha-numeric.
  • factualId: the factual ID mapping for this location
  • outOfBusiness: indicates if the location is in business or out of business (i.e., closed)
  • businessType: the type of business for the location
  • general
    • name: the name of the location
    • timeZone: time zone of the location
    • desc: general description of the location
    • website: location's existing website
  • location: address, directions, and other information about the physical location of the location
    • address1: physical street address of the location
    • address2: physical street address of the location
    • city: city of the location
    • region: region of the location (state, province, territory, etc.)
    • postcode: postal code of the location
    • country: the country in which the location resides
    • latitude: the latitude of the location
    • longitude: the longitude of the location
  • phones: a map of phone name to phone numbers. Each number is a 10 digit number with no dashes or spaces and no 1 at the beginning.
    • main: location's main number
    • fax: location's fax number

...

Code Block
titleSingle Location Entry

{
  "id" : "abc-kitchen",
  "general" : {
    "name" : "ABC Kitchen",
    "timeZone" : "EST",
    "desc" : null,
    "website" : "http://www.abchome.com/systemPage/services/restaurants/abckitchen/tabid/893/Default.aspx"
  },
  "location" : {
    "address1" : "35 East 18th Street",
    "address2" : null,
    "city" : "New York",
    "region" : "NY",
    "postcode" : "10003"
  },
  "phones" : {
    "main" : "2124755829",
    "fax" : "2125983020"
  }
}
Code Block
titleList of Locations

[ {
  "id" : "abc-kitchen",
  "general" : {
    "name" : "ABC Kitchen",
    "timeZone" : "EST",
    "desc" : null,
    "website" : "http://www.abchome.com/systemPage/services/restaurants/abckitchen/tabid/893/Default.aspx"
  },
  "location" : {
    "address1" : "35 East 18th Street",
    "address2" : null,
    "city" : "New York",
    "region" : "NY",
    "postcode" : "10003"
  },
  "phones" : {
    "main" : "2124755829",
    "fax" : "2125983020"
  }
},
{
  "id" : "les-halles",
  "general" : {
    "name" : "Les Halles",
    "timeZone" : "EST",
    "desc" : null,
    "website" : "http://leshalles.net/"
  },
  "location" : {
    "address1" : "411 Park Avenue South",
    "address2" : null,
    "city" : "New York",
    "region" : "NY",
    "postcode" : "10016"
  },
  "phones" : {
    "main" : "2126794111",
    "fax" : "2122132065"
  }
},
{
  "id" : "les-halles-2",
  "general" : {
    "name" : "Les Halles",
    "timeZone" : "EST",
    "desc" : null,
    "website" : "http://leshalles.net/"
  },
  "location" : {
    "address1" : "15 John Street",
    "address2" : null,
    "city" : "New York",
    "region" : "NY",
    "postcode" : "10038"
  },
  "phones" : {
    "main" : "2122858585",
    "fax" : "2127913280"
  }
} ]