Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. {
  2. // string, 22 character unique string business id
  3. "business_id": "tnhfDv5Il8EaGSXZGiuQGg",
  4.  
  5. // string, the business's name
  6. "name": "Garaje",
  7.  
  8. // string, the full address of the business
  9. "address": "475 3rd St",
  10.  
  11. // string, the city
  12. "city": "San Francisco",
  13.  
  14. // string, 2 character state code, if applicable
  15. "state": "CA",
  16.  
  17. // string, the postal code
  18. "postal code": "94107",
  19.  
  20. // float, latitude
  21. "latitude": 37.7817529521,
  22.  
  23. // float, longitude
  24. "longitude": -122.39612197,
  25.  
  26. // float, star rating, rounded to half-stars
  27. "stars": 4.5,
  28.  
  29. // integer, number of reviews
  30. "review_count": 1198,
  31.  
  32. // integer, 0 or 1 for closed or open, respectively
  33. "is_open": 1,
  34.  
  35. // object, business attributes to values. note: some attribute values might be objects
  36. "attributes": {
  37. "RestaurantsTakeOut": true,
  38. "BusinessParking": {
  39. "garage": false,
  40. "street": true,
  41. "validated": false,
  42. "lot": false,
  43. "valet": false
  44. },
  45. },
  46.  
  47. // an array of strings of business categories
  48. "categories": [
  49. "Mexican",
  50. "Burgers",
  51. "Gastropubs"
  52. ],
  53.  
  54. // an object of key day to value hours, hours are using a 24hr clock
  55. "hours": {
  56. "Monday": "10:00-21:00",
  57. "Tuesday": "10:00-21:00",
  58. "Friday": "10:00-21:00",
  59. "Wednesday": "10:00-21:00",
  60. "Thursday": "10:00-21:00",
  61. "Sunday": "11:00-18:00",
  62. "Saturday": "10:00-21:00"
  63. }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement