Last active
August 10, 2019 02:04
-
-
Save jorgejaramillo/5f46f3b57c4815e61972d986b4c2b71e to your computer and use it in GitHub Desktop.
Microformato de Producto
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
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org/", | |
| "@type": "Product", | |
| "description" : "Curso de SEO", | |
| "sku" : "C2", | |
| "mpn": "002", | |
| "name": "Curso SEO ", | |
| "image": [ | |
| "https://ejemplo.com/jj.jpg" | |
| ], | |
| "brand": { | |
| "@type": "Product", | |
| "name": "Nombre del producto" | |
| }, | |
| "review": { | |
| "@type": "Review", | |
| "reviewRating": { | |
| "@type": "Rating", | |
| "ratingValue": "4", | |
| "bestRating": "5" | |
| }, | |
| "author": { | |
| "@type": "Person", | |
| "name": "Estudiantes" | |
| } | |
| }, | |
| "aggregateRating": { | |
| "@type": "AggregateRating", | |
| "ratingValue": "4.4", | |
| "ratingCount": "50" | |
| }, | |
| "offers": { | |
| "@type": "AggregateOffer", | |
| "offerCount": "100", | |
| "lowPrice": "99.99", | |
| "highPrice": "199.99", | |
| "priceCurrency": "USD" | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment