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

reviewAspect

Thing > Property > reviewAspect

This Review or Rating is relevant to this part or facet of the itemReviewed.
Values expected to be one of these types
Text
Used on these types
Rating
Review

Source

https://github.com/schemaorg/schemaorg/issues/1689

Examples

Example 1
See JSON example.
TODO
TODO
<script type="application/ld+json">
{
  "@context": "http://schema.org/",
  "@type": "Review",
  "reviewBody": "The restaurant has great ambiance.",
  "itemReviewed": {
    "@type": "Restaurant",
    "name": "Fine Dining Establishment"
  },
  "reviewRating": {
    "@type": "Rating",
    "ratingValue": 5,
    "worstRating": 1,
    "bestRating": 5,
    "reviewAspect": "Ambiance"
  }
}
</script>