Last active
December 24, 2022 14:42
-
-
Save patrickcoombe/3000ae546ed95f5f9755 to your computer and use it in GitHub Desktop.
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
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "WebPage", | |
"breadcrumb": "Books > Marketing > JSON", | |
"mainEntity":{ | |
"@type": "Book", | |
"author": "http://www.example.com/author.html", | |
"bookFormat": "http://schema.org/EBook", | |
"datePublished": "2015-05-01", | |
"image": "coverImage.jpg", | |
"inLanguage": "English", | |
"isbn": "00000000", | |
"name": "The Title of Book", | |
"numberOfPages": "1234", | |
"offers": { | |
"@type": "Offer", | |
"availability": "http://schema.org/InStock", | |
"price": "9.99", | |
"priceCurrency": "USD" | |
}, | |
"publisher": "O'Json Publishing", | |
"aggregateRating": { | |
"@type": "AggregateRating", | |
"ratingValue": "4", | |
"reviewCount": "12" | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment