Created
April 10, 2018 12:33
-
-
Save hakkikonu/629aba69e38ab6139a412dbb8b7f0121 to your computer and use it in GitHub Desktop.
Google Product Schema Örneği
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": "http://schema.org/", | |
"@type": "Product", | |
"name": "Executive Anvil", | |
"image": [ | |
"https://example.com/photos/1x1/photo.jpg", | |
"https://example.com/photos/4x3/photo.jpg", | |
"https://example.com/photos/16x9/photo.jpg" | |
], | |
"description": "Sleeker than ACME's Classic Anvil, the Executive Anvil is perfect for the business traveler looking for something to drop from a height.", | |
"mpn": "925872", | |
"brand": { | |
"@type": "Thing", | |
"name": "ACME" | |
}, | |
"aggregateRating": { | |
"@type": "AggregateRating", | |
"ratingValue": "4.4", | |
"reviewCount": "89" | |
}, | |
"offers": { | |
"@type": "Offer", | |
"priceCurrency": "USD", | |
"price": "119.99", | |
"priceValidUntil": "2020-11-05", | |
"itemCondition": "http://schema.org/UsedCondition", | |
"availability": "http://schema.org/InStock", | |
"seller": { | |
"@type": "Organization", | |
"name": "Executive Objects" | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment