Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sabrysuleiman/a07762ad383485f2d3b8a37a2879d782 to your computer and use it in GitHub Desktop.
Save sabrysuleiman/a07762ad383485f2d3b8a37a2879d782 to your computer and use it in GitHub Desktop.
microdata schema for travel agency
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "FreeTours",
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10012"
},
"image": "https://www.freetours.dev/wp-content/uploads/2019/04/freetours.png",
"email": "info@freetours.dev",
"telePhone": "+12123727707",
"url": "https://freetours.dev",
"paymentAccepted": [ "cash", "credit card" ],
"openingHours": "Mo,Tu,We,Th,Fr,Sa,Su 09:30-18:30",
"openingHoursSpecification": [ {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "09:30",
"closes": "18:30"
} ],
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.868520",
"longitude": "-73.918509"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.75",
"reviewCount": "221"
},
"priceRange":"$$"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment