negativeNotes
A Schema.org PropertyThis term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
- Canonical URL: https://schema.org/negativeNotes
- Check for open issues.
Indicates, in the context of a Review (e.g. framed as 'pro' vs 'con' considerations), negative considerations - either as unstructured text, or a list.
Values expected to be one of these types |
---|
ItemList |
Used on these types |
---|
Review
|
Source
https://github.com/schemaorg/schemaorg/issues/2832
Examples
Example 1
Copied
Example notes or example HTML without markup.
See JSON-LD example.
Example encoded as Microdata embedded in HTML.
Example encoded as RDFa embedded in HTML.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Review", "name": "Megaphone 11 review", "description": "Megaphone 11 is the strongest phone in the line...", "positiveNotes": { "@type": "ItemList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Tougher and water resistant design." }, { "@type": "ListItem", "position": 2, "name": "Cheery bright colours and solid feel." }, { "@type": "ListItem", "position": 3, "name": "Excellent amplification." } ] }, "negativeNotes": { "@type": "ItemList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "More expensive than its predecessor." }, { "@type": "ListItem", "position": 2, "name": "Quite heavy material." } ] } } </script>
Structured representation of the JSON-LD example.