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

positiveNotes

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 positive considerations regarding something, for example product highlights or (alongside negativeNotes) pro/con lists for reviews.

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.

The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive 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.
  1. See JSON-LD example.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "Review",
  5.   "name": "Megaphone 11 review",
  6.   "description": "Megaphone 11 is the strongest phone in the line...",
  7.   "positiveNotes":
  8.   {
  9.     "@type": "ItemList",
  10.     "itemListElement": [
  11.     {
  12.       "@type": "ListItem",
  13.       "position": 1,
  14.       "name": "Tougher and water resistant design."
  15.     },
  16.     {
  17.       "@type": "ListItem",
  18.       "position": 2,
  19.       "name": "Cheery bright colours and solid feel."
  20.     },
  21.     {
  22.       "@type": "ListItem",
  23.       "position": 3,
  24.       "name": "Excellent amplification."
  25.     }
  26.   ]
  27.   },
  28.   "negativeNotes":
  29.   {
  30.     "@type": "ItemList",
  31.     "itemListElement": [
  32.     {
  33.       "@type": "ListItem",
  34.       "position": 1,
  35.       "name": "More expensive than its predecessor."
  36.     },
  37.     {
  38.       "@type": "ListItem",
  39.       "position": 2,
  40.       "name": "Quite heavy material."
  41.     }
  42.   ]
  43.  }
  44. }
  45. </script>
Structured representation of the JSON-LD example.