Created
February 12, 2016 15:24
-
-
Save dhaupin/bf207c24fc1a56045473 to your computer and use it in GitHub Desktop.
JSON-LD - Schema.org organization markup
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":"http://schema.org", | |
"@type":"HomeGoodsStore", | |
"name":"Our Store", | |
"legalName":"Our Company", | |
"url":"https://www.ourstore.com/", | |
"sameAs":"http://plus.google.com/99999999999999", | |
"logo":"https://www.ourstore.com/image/logo.png", | |
"photo":"https://www.ourstore.com/image/ourstore.png", | |
"description":"People give us money and we give them GLORIOUS PRODUCTS.", | |
"founder":"A Guy", | |
"foundingDate":"1789", | |
"currenciesAccepted":"USD", | |
"paymentAccepted":"Cash, Credit Card, & Paypal", | |
"priceRange":"$$", | |
"openingHours":"Mo-Fr 09:00-17:00", | |
"contactPoint":{ | |
"@type":"ContactPoint", | |
"contactType":"Customer Service", | |
"telephone":"+1-888-888-8888", | |
"faxNumber":"+1-777-777-7777", | |
"contactOption":"TollFree", | |
"areaServed":"US", | |
"availableLanguage":"English", | |
"email":"mailto:[email protected]" | |
}, | |
"address":{ | |
"@type":"PostalAddress", | |
"name":"Our Store", | |
"streetAddress":"120 Main St", | |
"addressLocality":"Beverly Hills", | |
"addressRegion":"CA", | |
"postalCode":"90210", | |
"addressCountry":"United States" | |
}, | |
"hasMap":{ | |
"@type":"Map", | |
"url":"https://maps.google.com/maps?q=our+store" | |
}, | |
"geo":{ | |
"@type":"GeoCoordinates", | |
"latitude":"55.555555", | |
"longitude":"-66.666666" | |
}, | |
"aggregateRating":{ | |
"@type":"AggregateRating", | |
"ratingValue":5, | |
"reviewCount":"20" | |
}, | |
"review":[ | |
{ | |
"@type":"Review", | |
"datePublished":"2016-01-13", | |
"name":"Awesome", | |
"reviewBody":"Thanks for being awesome", | |
"author":{ | |
"@type":"Person", | |
"name":"Some Lady" | |
}, | |
"itemReviewed":{ | |
"@type":"Organization", | |
"name":"Our Store" | |
}, | |
"reviewRating":{ | |
"@type":"Rating", | |
"ratingValue":"5" | |
} | |
}, | |
{ | |
"@type":"Review", | |
"datePublished":"2015-11-02", | |
"name":"Neat", | |
"reviewBody":"You are great", | |
"author":{ | |
"@type":"Person", | |
"name":"Some Dude" | |
}, | |
"itemReviewed":{ | |
"@type":"Organization", | |
"name":"Our Store" | |
}, | |
"reviewRating":{ | |
"@type":"Rating", | |
"ratingValue":"5" | |
} | |
} | |
] | |
}</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment