Last active
June 27, 2024 14:20
-
-
Save JoeyBurzynski/66a2b63a7eb80d7f95925c7b7362a509 to your computer and use it in GitHub Desktop.
Sample Product JSON-LD (In Stock)
This file contains 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": "Product", | |
"aggregateRating": { | |
"@type": "AggregateRating", | |
"ratingValue": "3.5", | |
"reviewCount": "11" | |
}, | |
"description": "0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.", | |
"name": "Kenmore White 17\" Microwave", | |
"image": "kenmore-microwave-17in.jpg", | |
"offers": { | |
"@type": "Offer", | |
"availability": "http://schema.org/InStock", | |
"price": "55.00", | |
"priceCurrency": "USD" | |
}, | |
"review": [ | |
{ | |
"@type": "Review", | |
"author": "Ellie", | |
"datePublished": "2011-04-01", | |
"description": "The lamp burned out and now I have to replace it.", | |
"name": "Not a happy camper", | |
"reviewRating": { | |
"@type": "Rating", | |
"bestRating": "5", | |
"ratingValue": "1", | |
"worstRating": "1" | |
} | |
}, | |
{ | |
"@type": "Review", | |
"author": "Lucas", | |
"datePublished": "2011-03-25", | |
"description": "Great microwave for the price. It is small and fits in my apartment.", | |
"name": "Value purchase", | |
"reviewRating": { | |
"@type": "Rating", | |
"bestRating": "5", | |
"ratingValue": "4", | |
"worstRating": "1" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment