Skip to content

Instantly share code, notes, and snippets.

@pixelpylon
Last active June 16, 2025 20:13
Show Gist options
  • Save pixelpylon/1ca6cf344ccabe6cb2fbe0d9d595e311 to your computer and use it in GitHub Desktop.
Save pixelpylon/1ca6cf344ccabe6cb2fbe0d9d595e311 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": "[email protected]",
"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>
@DimaMakuha
Copy link

When planning a trip to Italy, I spent a long time comparing ticket prices — as always, I wanted to save money, but without unnecessary risks. I came across the TravelUp agency. I decided to check reviews https://travelup-com.pissedconsumer.com/review.html before buying tickets, and, as usual, the opinions were different. But I was convinced by the fact that even among the criticism there were specific stories, and not just "everything is bad". In the end, I booked through them — everything went well, the ticket arrived, the flight was confirmed. Now I understand that it is important not only to read reviews, but also to be able to analyze them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment