@genevieve_boehm
To markup a floating price product in schema.org, you can use the "Offer" type along with its properties. Here's an example of how you can do this:
1 2 3 4 5 6 |
<div itemscope itemtype="http://schema.org/Product"> <span itemprop="sku">ABC123</span> <h2 itemprop="name">Example Product</h2> <p itemprop="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> <img itemprop="image" src="product-image.jpg" alt="Product Image"> </div> |
1 2 3 4 5 |
<div itemscope itemtype="http://schema.org/Offer"> <a itemprop="itemOffered" itemscope itemtype="http://schema.org/Product" href="product.html#ABC123"> <meta itemprop="sku" content="ABC123" /> </a> </div> |
1 2 3 4 5 6 7 |
<div itemscope itemtype="http://schema.org/Offer"> <a itemprop="itemOffered" itemscope itemtype="http://schema.org/Product" href="product.html#ABC123"> <meta itemprop="sku" content="ABC123" /> </a> <span itemprop="price" content="10.00">$10.00</span> <meta itemprop="priceCurrency" content="USD" /> </div> |
Note that in this example, the product has a floating price of $10.00, and the currency is set to USD. Adjust the values accordingly for your product.
By marking up your product and offer using schema.org, search engines and other applications can better understand and display the relevant information about your floating price product.