Note: you are viewing the development version of Schema.org. See How we work for more details.

negativeNotes

A Schema.org Property

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside positiveNotes). For symmetry

In the case of a Review, the property describes the itemReviewed from the perspective of the review; in the case of a Product, the product itself is being described. Since product descriptions tend to emphasise positive claims, it may be relatively unusual to find negativeNotes used in this way. Nevertheless for the sake of symmetry, negativeNotes can be used on Product.

The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list).

Values expected to be one of these types

Used on these types

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 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.