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

      Automotive Inventory Stack

      Vehicle listing pages with delivery/returns signals, reviews, FAQs, and breadcrumb context for dealerships.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Vehicle detail pages for dealerships/marketplaces
      • Inventory listings needing delivery/returns clarity and trust
      • Pages where FAQs cover financing, delivery, and warranty

      What's included

      • Vehicle Listing
        Open generator

        Core vehicle entity with specs, condition, and offers.

      • Offer Shipping Details
        Open generator

        Delivery/shipping details (for delivery or pickup) and costs.

      • Merchant Return Policy
        Open generator

        Return/exchange policy for vehicles (if applicable).

      • Frequently Asked Questions
        Open generator

        Answer financing, delivery, warranty, and inspection questions.

      • Social proof for the dealership or vehicle.

      • Breadcrumb
        Open generator

        Navigation context for the listing.

      Required properties (stack union)

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

      author.name
      description
      itemListElement[].name
      itemReviewed.@id
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.availability
      offers.price
      offers.priceCurrency
      offers.shippingDetails[].deliveryTime.transitTime
      offers.shippingDetails[].shippingDestination.addressCountry
      offers.shippingDetails[].shippingRate.currency
      returnFees
      returnMethod
      returnPolicyCategory
      reviewBody
      reviewRating.ratingValue
      url

      Recommended properties (stack union)

      applicableCountry
      bodyType
      brand.name
      color
      datePublished
      image
      inStoreReturnsOffered
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      merchantReturnDays
      mileageFromOdometer.unitCode
      mileageFromOdometer.value
      model
      name
      offers.itemCondition
      offers.shippingDetails[].deliveryTime.handlingTime
      offers.shippingDetails[].shippingDestination.addressRegion
      offers.shippingDetails[].shippingRate.value
      restockingFee
      reviewRating.bestRating
      url
      vehicleIdentificationNumber
      vehicleModelDate
      vehicleTransmission

      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": "Vehicle",
          "@id": "https://www.example.com/vehicles/2024-sedan-123#vehicle",
          "name": "2024 ACME Sedan Premium",
          "description": "Certified pre-owned ACME Sedan with low mileage and advanced safety features.",
          "url": "https://www.example.com/vehicles/2024-sedan-123",
          "image": [
            "https://www.example.com/images/2024-sedan-123-front.webp",
            "https://www.example.com/images/2024-sedan-123-interior.webp"
          ],
          "vehicleIdentificationNumber": "1HGBH41JXMN109186",
          "brand": { "@type": "Brand", "name": "ACME" },
          "model": "Sedan Premium",
          "vehicleModelDate": "2024",
          "mileageFromOdometer": {
            "@type": "QuantitativeValue",
            "value": 12500,
            "unitCode": "SMI"
          },
          "color": "Blue",
          "vehicleTransmission": "Automatic",
          "bodyType": "Sedan",
          "offers": {
            "@type": "Offer",
            "@id": "https://www.example.com/vehicles/2024-sedan-123#offer",
            "price": "28990.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "itemCondition": "https://schema.org/UsedCondition",
            "url": "https://www.example.com/vehicles/2024-sedan-123#purchase",
            "shippingDetails": [
              {
                "@type": "OfferShippingDetails",
                "shippingDestination": {
                  "@type": "DefinedRegion",
                  "addressCountry": "US"
                },
                "deliveryTime": {
                  "@type": "ShippingDeliveryTime",
                  "transitTime": {
                    "@type": "QuantitativeValue",
                    "minValue": 2,
                    "maxValue": 7,
                    "unitCode": "d"
                  }
                },
                "shippingRate": {
                  "@type": "MonetaryAmount",
                  "value": "499.00",
                  "currency": "USD"
                }
              }
            ],
            "hasMerchantReturnPolicy": "https://www.example.com/returns#policy"
          },
          "aggregateRating": {
            "@type": "AggregateRating",
            "ratingValue": 4.8,
            "reviewCount": 64
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "MerchantReturnPolicy",
          "@id": "https://www.example.com/returns#policy",
          "name": "7-day exchange policy",
          "url": "https://www.example.com/returns",
          "returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
          "merchantReturnDays": 7,
          "returnMethod": "https://schema.org/ReturnByMail",
          "returnFees": "https://schema.org/RestockingFees",
          "applicableCountry": "US",
          "inStoreReturnsOffered": true
        },
        {
          "@context": "https://schema.org",
          "@type": "Review",
          "@id": "https://www.example.com/reviews/vehicle-123#review",
          "name": "Smooth process and great condition",
          "reviewBody": "Vehicle matched the photos, easy financing, and quick delivery.",
          "datePublished": "2026-02-12",
          "reviewRating": {
            "@type": "Rating",
            "ratingValue": 5,
            "bestRating": 5
          },
          "author": { "@type": "Person", "name": "Jordan M." },
          "itemReviewed": { "@id": "https://www.example.com/vehicles/2024-sedan-123#vehicle" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do you deliver nationwide?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. We ship to all 48 contiguous US states. Delivery fees vary by region."
              }
            },
            {
              "@type": "Question",
              "name": "Is financing available?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Pre-qualify online with no impact to credit. Financing options appear at checkout."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Vehicles", "item": "https://www.example.com/vehicles" },
            { "@type": "ListItem", "position": 3, "name": "2024 ACME Sedan Premium", "item": "https://www.example.com/vehicles/2024-sedan-123" }
          ]
        }
      ]

      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

      Can I remove shippingDetails for pickup-only?

      Yes. If you only offer pickup, omit shippingDetails and ensure the offer and page clearly state pickup terms.

      How do I handle financing?

      Financing isn’t a schema field here. Keep finance options in visible content and link from FAQ answers.

      References