Review Essential Schema Example
SEO Help and Tips
Review Essential Schema Example
Here's an example of a schema markup for a Review:
{
"@context": "http://schema.org",
"@type": "Review",
"itemReviewed": {
"@type": "Product",
"name": "Product Name"
},
"reviewRating": {
"@type": "Rating",
"ratingValue": "4.5",
"bestRating": "5",
"worstRating": "1"
},
"author": {
"@type": "Person",
"name": "Reviewer Name"
},
"datePublished": "2023-06-18",
"reviewBody": "Review text describing the experience with the product."
}
In this example:
"@type": "Review" indicates that the schema markup is for a review.
"itemReviewed" represents the product being reviewed.
"@type": "Product" indicates that it is a product entity.
"name" represents the name of the product.
"reviewRating" provides the rating of the review.
"@type": "Rating" indicates that it is a rating entity.
"ratingValue" represents the value of the rating (e.g., "4.5").
"bestRating" represents the highest possible rating (e.g., "5").
"worstRating" represents the lowest possible rating (e.g., "1").
"author" represents the author of the review.
"@type": "Person" indicates that it is a person entity.
"name" represents the name of the reviewer.
"datePublished" indicates the publication date of the review.
"reviewBody" contains the text of the review, describing the reviewer's experience with the product.
You can adjust the properties and values based on the specific details of your review.
Comments
Post a Comment
Thanks for your Comments.