The json representing a Starred Place has the following format:
{
"type" : "FeatureCollection",
"features" : [ {
"geometry" : {
"coordinates" : [ ***, *** ],
"type" : "Point"
},
"properties" : {
"Google Maps URL" : "***",
"Location" : {
"Latitude" : "***",
"Longitude" : "***"
},
"Published" : "***",
"Title" : "***",
"Updated" : "***"
},
"type" : "Feature"
} ]
}
The json representing a Place Review has the following format:
{
"type" : "FeatureCollection",
"features" : [ {
"geometry" : {
"coordinates" : [ ***, *** ],
"type" : "Point"
},
"properties" : {
"Google Maps URL" : "***",
"Location" : {
"Address" : "***",
"Business Name" : "***",
"Country Code" : "***",
"Geo Coordinates" : {
"Latitude" : "***",
"Longitude" : "***"
}
},
"Published" : "***",
"Review Comment" : "***",
"Star Rating" : ***,
"Updated" : "***"
},
"type" : "Feature"
} ]
}