...
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 locationoutOfBusiness
: indicates if the location is in business or out of business (i.e., closed). Valid values: true or falsebusinessType
: the type of business for the locationgeneral
name
: the name of the locationtimeZone
: time zone of the locationdesc
: general description of the locationwebsite
: location's existing website
location
: address, directions, and other information about the physical location of the locationaddress1
: physical street address of the locationaddress2
: physical street address of the locationcity
: city of the locationregion
: region of the location (state, province, territory, etc.)postcode
: postal code of the locationcountry
: the country in which the location resideslatitude
: the latitude of the locationlongitude
: 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 numberfax
: location's fax number
...
Code Block | ||
---|---|---|
| ||
{
"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 | ||
---|---|---|
| ||
[ {
"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"
}
} ]
|