Last active
October 24, 2019 14:05
-
-
Save mskian/f57677e8d4bc69ecb722285bfe5c4adb to your computer and use it in GitHub Desktop.
Add Star Ratings for Product Review
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "http://schema.org", | |
"@type": "Review", | |
"itemReviewed": { | |
"@type": "Product", | |
"name": "Hello Product review" | |
}, | |
"reviewRating": { | |
"@type": "Rating", | |
"ratingValue": "5.0", | |
"bestRating": 5 | |
}, | |
"author": { | |
"@type": "Person", | |
"name": "Santhosh veer" | |
}, | |
"reviewBody": "Hello product - Let's Say Hello and Let's Review them." | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment