EmployerAggregateRating Schema Validation API

EmployerAggregateRating schema markup enables employer ratings to appear in Google Search — showing star ratings and review counts for companies in job search results. This structured data type is used by employer review platforms like Glassdoor and Indeed. Valid markup allows your employer rating data to surface alongside job listings.

Required Properties

PropertyTypeDescription
itemReviewedrich result
OrganizationThe employer being rated. Must be an Organization with a name.
ratingValuerich result
numberThe aggregate rating value (e.g. 3.9).
ratingCountrich result
numberThe total number of ratings.

Recommended Properties

Missing recommended properties generate warnings. They won't block validation, but rich result-tagged properties are needed for full Google rich result eligibility.

PropertyTypeDescription
bestRating
numberThe highest possible rating (typically 5).
worstRating
numberThe lowest possible rating (typically 1).
author
OrganizationThe review platform collecting these ratings.

Rich Result Eligibility

Rich result type: Employer rating in job search results

Requirements: Required: itemReviewed (Organization being rated), ratingValue (numeric), and ratingCount (number of ratings).

Example valid EmployerAggregateRating JSON-LD

{
  "@context": "https://schema.org",
  "@type": "EmployerAggregateRating",
  "itemReviewed": {
    "@type": "Organization",
    "name": "Acme Corporation",
    "sameAs": "https://example.com"
  },
  "ratingValue": "3.9",
  "bestRating": "5",
  "worstRating": "1",
  "ratingCount": 1847,
  "author": {
    "@type": "Organization",
    "name": "WorkReviews Platform"
  }
}

Validate via API

Validate this schema against Google's requirements in one API call:

curl "https://schemacheck.dev/api/v1/validate" \
  -H "x-api-key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonld":{"@context":"https://schema.org","@type":"EmployerAggregateRating","itemReviewed":{"@type":"Organization","name":"Acme Corporation","sameAs":"https://example.com"},"ratingValue":"3.9","bestRating":"5","worstRating":"1","ratingCount":1847,"author":{"@type":"Organization","name":"WorkReviews Platform"}}}'

Official Documentation

Google Structured Data: EmployerAggregateRating

Validate your EmployerAggregateRating schema now

100 free validations/month. No credit card required.