OfferItemCondition
OfferItemCondition is a 4-value Enumeration for the condition of an offered product. Values: NewCondition, UsedCondition, RefurbishedCondition, DamagedCondition. Used on Offer.itemCondition, Product.itemCondition, and MerchantReturnPolicy.itemCondition.
Full example of schema.org/OfferItemCondition json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Car",
"name": "1967 Volvo 122S Amazon",
"itemCondition": "https://schema.org/UsedCondition",
"offers": {
"@type": "Offer",
"price": "18500",
"priceCurrency": "EUR",
"itemCondition": "https://schema.org/UsedCondition",
"availability": "https://schema.org/InStock"
}
}
</script>Minimal valid version
The smallest markup that still produces a valid OfferItemCondition entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Offer",
"itemCondition": "https://schema.org/NewCondition"
}
</script>Google rich results this unlocks
OfferItemCondition is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). OfferItemCondition becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common OfferItemCondition mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Free text condition
Wrong"itemCondition": "new"Right"itemCondition": "https://schema.org/NewCondition"The four OfferItemCondition URIs are the only values Google's merchant listing parses.
Schema properties in this example
Also mentioned in 1 other example
OfferItemCondition also appears in Enumeration. See the full OfferItemCondition schema page for every reference.
About the example data
"1967 Volvo 122S Amazon — UsedCondition" on the Xoo Garage listing.
Comments
Loading comments...