Schema stack

    Travel Visa Info Stack

    Visa and immigration guidance pages with WebPage + Service context, FAQs, and breadcrumb navigation.

    Included schema
    Web Page
    Service
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • Visa requirement guides for specific destinations
    • Immigration service pages outlining eligibility and timelines
    • Pages where FAQs clarify documents, fees, and processing times
    Composition

    What is included

    • Defines the visa info page and its description.

    • Describes visa or immigration assistance services and provider.

    • Answers questions about requirements, timelines, and fees.

    • Provides navigation context for the visa info page.

    Data contract

    Properties across the bundle

    Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.

    Required properties

    • areaServed.name
    • description
    • itemListElement[].name
    • mainEntity[].@type=Question
    • mainEntity[].acceptedAnswer.text
    • name
    • provider.name
    • serviceType
    • url

    Recommended properties

    • dateModified
    • description
    • inLanguage
    • itemListElement[].item
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • offers.availability
    • offers.url
    Copy-ready example

    Combined JSON-LD

    Paste this as one script tag, then replace every example value with data from the live page.

    [
      {
        "@context": "https://schema.org",
        "@type": "WebPage",
        "@id": "https://www.example.com/visas/japan#page",
        "name": "Japan Visa Requirements",
        "description": "Eligibility, documents, and timelines for Japan tourist visas.",
        "url": "https://www.example.com/visas/japan",
        "inLanguage": "en",
        "dateModified": "2026-03-05"
      },
      {
        "@context": "https://schema.org",
        "@type": "Service",
        "@id": "https://www.example.com/visas/japan#service",
        "name": "Japan Visa Assistance",
        "serviceType": "Travel Visa Processing",
        "description": "Application review, document prep, and appointment scheduling support.",
        "provider": { "@type": "Organization", "name": "GlobePath Travel" },
        "areaServed": { "@type": "AdministrativeArea", "name": "United States" },
        "offers": {
          "@type": "Offer",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/visas/japan#apply"
        }
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          {
            "@type": "Question",
            "name": "How long does processing take?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Processing typically takes 5-10 business days after submitting all required documents."
            }
          },
          {
            "@type": "Question",
            "name": "What documents are required?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Passport valid for 6+ months, application form, photo, itinerary, and proof of funds."
            }
          },
          {
            "@type": "Question",
            "name": "Do you handle embassy appointments?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Yes. We coordinate available appointment times and guide you through the submission process."
            }
          }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
          { "@type": "ListItem", "position": 2, "name": "Visas", "item": "https://www.example.com/visas" },
          { "@type": "ListItem", "position": 3, "name": "Japan", "item": "https://www.example.com/visas/japan" }
        ]
      }
    ]
    Workflow

    Implement and verify

    1. 01

      Start with the live page

      Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.

    2. 02

      Add one JSON-LD script

      Use the combined example as a template in the document head or before the closing body tag.

    3. 03

      Complete regional details

      Fill shipping destinations and timing for every region the page actually serves.

    4. 04

      Link the return policy

      Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.

    5. 05

      Match visible answers

      Add only FAQs that users can read on the same page, with identical answers.

    6. 06

      Validate after changes

      Run Rich Results Test after implementation and whenever price, availability, or policy data changes.

    Quality check

    Common errors and fixes

    • Missing currency or availability

      Use ISO currency codes and complete schema.org availability URLs in Offer data.

    • Incomplete shipping details

      Include shippingDestination.addressCountry and deliveryTime.transitTime with units.

    • Return policy is not connected

      Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.

    • FAQ answers differ from the page

      Keep structured FAQ answers identical to visible answers.

    Questions

    Stack FAQs

    Should I include pricing on the Service?

    If your page lists a service fee, include offers.price and offers.priceCurrency. Otherwise, keep offers.url only.

    How do I handle multiple traveler types?

    Create separate pages for each traveler type (tourist, business, student) and keep each page's FAQ and Service aligned.

    Primary sources

    References