Skip to content
SEWWA

Schema guides Industry

Schema generator for Travel Agencies

Common schema types for Travel Agencies

SEO tips

Example JSON-LD

{
"@context": "https://schema.org",
"@graph": [
{
"@type": "TravelAgency",
"@id": "https://example.com/#agency",
"name": "Horizon Custom Travel",
"url": "https://example.com/",
"logo": "https://example.com/logo.svg",
"telephone": "+1-212-555-0140",
"address": {
"@type": "PostalAddress",
"streetAddress": "350 Madison Ave, Floor 12",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10017",
"addressCountry": "US"
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "09:00",
"closes": "18:00"
}
},
{
"@type": "TouristTrip",
"name": "Amalfi Coast: 7 nights, small-group culinary tour",
"description": "Coastal towns, cooking classes, and winery visits. Dates and inclusions as shown on the booking page.",
"url": "https://example.com/trips/amalfi-culinary",
"touristType": "Couples and food enthusiasts",
"provider": { "@id": "https://example.com/#agency" },
"offers": {
"@type": "Offer",
"url": "https://example.com/trips/amalfi-culinary#book",
"priceCurrency": "USD",
"price": "4299.00",
"availability": "https://schema.org/InStock",
"validFrom": "2026-05-01"
}
}
]
}

Overview

Travel pages often blend inspiration and commerce. TravelAgency identifies the business; TouristTrip or Trip types apply when you describe specific bookable trips users can see. Avoid marking up aspirational copy as bookable products.

FAQPage is ideal for cancellation, visa, and insurance questions that actually appear in an FAQ section.

Try the free Schema Generator →