TYPES: EmployerAggregateRating

PRE-MARKUP:

See JSON example.

MICRODATA:

TODO

RDFA:

TODO

JSON:

<script type="application/ld+json">
{
  "@context": "http://schema.org/",
  "@type": "EmployerAggregateRating",
  "description": "ACME Corp gets 4/5 stars as an employer based on 42 ratings.",
  "itemReviewed": {
    "@type": "Organization",
    "name": "ACME Corp"
  },
  "ratingCount": 42,
  "ratingValue": 4,
  "worstRating": 1,
  "bestRating": 5
}
</script>

TYPES: Review, Rating, reviewAspect

PRE-MARKUP:

See JSON example.

MICRODATA:

TODO

RDFA:

TODO

JSON:

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