Skip to content

Instantly share code, notes, and snippets.

@nicolaslule
Last active August 15, 2018 16:37
Show Gist options
  • Save nicolaslule/5a53039b516584a7ece91541247ed86b to your computer and use it in GitHub Desktop.
Save nicolaslule/5a53039b516584a7ece91541247ed86b to your computer and use it in GitHub Desktop.
Review page using JSON-LD
<script type="application/ld+json">
[
{"@context":"https://schema.org",
"@type":"LocalBusiness",
"name":"reviews",
"url":"https://homeandgardenlawncare.com/reviews/",
"aggregateRating":{"@type":"AggregateRating",
"ratingValue":5,
"reviewCount":3,
"bestRating":5,"worstRating":1},
"review":[
{"@type":"Review",
"name":"They are always busy, but worth waiting",
"reviewBody":"It took a while to get a hold of them, I guess they are busy but they provided great services.",
"datePublished":"2018-08-09T09:11:20+00:00",
"author":{"@type":"Person","name":"Steve O."},
"reviewRating":
{"@type":"Rating",
"ratingValue":"5",
"bestRating":5,
"worstRating":1}},
{"@type":"Review",
"name":"Great Service",
"reviewBody":"I just ordered aeration for this coming season, they did a great job last year.",
"datePublished":"2018-03-07T23:55:09+00:00",
"author":{"@type":"Person","name":"Scott S."},
"reviewRating":
{"@type":"Rating","ratingValue":"5",
"bestRating":5,
"worstRating":1}},
{"@type":"Review",
"name":"Job well done!",
"reviewBody":"Great job taking care of our lawn this summer. Made my life a whole lot easier. Thank you very much for a job well done. Definitely will be using you in the future.",
"datePublished":"2017-12-02T08:04:06+00:00",
"author":{"@type":"Person","name":"David A."},
"reviewRating":
{"@type":"Rating",
"ratingValue":"5",
"bestRating":5,
"worstRating":1}}]}]
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment