jsonld@web
jsonld@web:/vehicle-listing-json-ld-example$  cat ./vehicle-listing-json-ld-example.jsonld
rich results · passed @type · example

> JSON-LD Example for Vehicle Listing

Here is some original example json-ld snippet code for vehicle listing schema markup, this is particularly useful for search and filtering.

published
modified
size
1.0K
path
/vehicle-listing-json-ld-example/

Last updated February 16, 2025 by Patrick Coombe

This is a powerful code snippet that could be very favorable for your car brand in Google Search results. Google calls this “Vehicle listing json-ld” Here is one snippet to get you started:

This type is crucial for enhancing the visibility and searchability of vehicle listings on the web. This JSON-LD type helps search engines understand key details about a vehicle, such as make, model, year, price, mileage, and availability. By implementing JSON-LD in vehicle listings, dealerships and sellers can improve their search engine rankings, enable rich search results with detailed previews, and enhance the overall user experience. This structured approach not only increases organic traffic but also ensures accurate and consistent vehicle information across multiple platforms.

vehicle-listing-json-ld-example.jsonld · 1.2K test
{
      "@context": "https://schema.org",
      "@type": "Car",
      "name": "2009 Audi A6",
      "vehicleIdentificationNumber": "JN8AZ2NE5C9016953",
      "image": [
        "https://example.com/car1.jpg",
        "https://example.com/car1.jpg"
      ],
      "url": "https://www.example.com/my-car-listing",
      "offers": {
        "@type": "Offer",
        "availability": "https://schema.org/InStock",
        "price": 80000,
        "priceCurrency": "USD"
      },
      "itemCondition": "https://schema.org/NewCondition",
      "brand": {
        "@type": "Brand",
        "name": "Audi"
      },
      "model": "A6",
      "vehicleConfiguration": "SLI",
      "vehicleModelDate": "2009",
      "mileageFromOdometer": {
        "@type": "QuantitativeValue",
        "value": "000000",
        "unitCode": "SMI"
      },
      "color": "White",
      "vehicleInteriorColor": "Black",
      "vehicleInteriorType": "Standard",
      "bodyType": "Pickup",
      "driveWheelConfiguration": "https://schema.org/FourWheelDriveConfiguration",
      "vehicleEngine": {
        "@type": "EngineSpecification",
        "fuelType": "Gasoline"
      },
      "vehicleTransmission": "Manual",
      "numberOfDoors": 4,
      "vehicleSeatingCapacity": 4
    }