Hello,
Thank you for contacting us.
To represent structured data related to a travel tour on your website, you can use the TouristTrip schema from Schema.org.
This schema allows you to describe various aspects of a tourist trip, including offerings, itineraries, and other details.
Here’s an example of how you might structure the JSON-LD for the given information:
{
"@context": "http://schema.org",
"@type": "TouristTrip",
"name": "daily Capri boat tour",
"offers": {
"@type": "Offer",
"price": "50",
"priceCurrency": "EUR",
"availability": "http://schema.org/InStock"
},
"itinerary": {
"@type": "Place",
"name": "Departure",
"address": {
"@type": "PostalAddress",
"addressLocality": "Positano"
}
},
"touristType": "Boat Tour"
}
This code defines the tour name, ticket price, and departure location.
You can expand on this example with more details that apply to your specific tour, such as the duration, return location, guide information, or other elements that describe the tour offering.
We hope that helps, and please don’t hesitate to get in touch if you have any other questions.
Thank you.