Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Boat / Marina Rental Stack

      Boat and marina rental pages with Service + Place context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Boat rental landing pages with pricing and availability
      • Marina slip or dock rental pages
      • Pages where FAQs clarify deposits, safety requirements, and fuel

      What's included

      • Defines the rental service with provider and offer details.

      • Describes the marina or pickup location.

      • Frequently Asked Questions
        Open generator

        Answers questions about licensing, safety, and deposits.

      • Breadcrumb
        Open generator

        Provides navigation context for the rental page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      address.addressCountry
      address.addressLocality
      address.addressRegion
      address.streetAddress
      areaServed.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      offers.url
      provider.name
      serviceType
      url

      Recommended properties (stack union)

      description
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.availability
      offers.priceValidUntil

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@context": "https://schema.org",
          "@type": "Service",
          "@id": "https://www.example.com/marina/boat-rentals#service",
          "name": "Boat Rentals",
          "serviceType": "BoatRental",
          "description": "Hourly and full-day boat rentals with safety briefing and fuel options.",
          "provider": { "@type": "Organization", "name": "Northwind Marina" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Lake Travis" },
          "offers": {
            "@type": "Offer",
            "price": "149.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/marina/boat-rentals/book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Place",
          "@id": "https://www.example.com/marina#place",
          "name": "Northwind Marina",
          "url": "https://www.example.com/marina",
          "image": "https://www.example.com/images/marina.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "1200 Harbor Dr",
            "addressLocality": "Austin",
            "addressRegion": "TX",
            "addressCountry": "US"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do I need a boating license?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Operators born after Sept 1, 1993 must complete a Texas boater safety course."
              }
            },
            {
              "@type": "Question",
              "name": "Is fuel included?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Fuel is billed based on usage and refueled upon return."
              }
            },
            {
              "@type": "Question",
              "name": "What is the deposit policy?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "A refundable deposit is required at check-in and released after inspection."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Marina", "item": "https://www.example.com/marina" },
            { "@type": "ListItem", "position": 3, "name": "Boat Rentals", "item": "https://www.example.com/marina/boat-rentals" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Should I list multiple boat types?

      If multiple boats are listed, add separate Offer entries or link to individual boat pages.

      Do I need to include safety requirements?

      Yes. Include safety requirements and age restrictions in page copy and FAQs.

      References