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.
| Property | Type | Description |
|---|---|---|
itemReviewedrich result | Organization | The employer being rated. Must be an Organization with a name. |
ratingValuerich result | number | The aggregate rating value (e.g. 3.9). |
ratingCountrich result | number | The total number of ratings. |
Missing recommended properties generate warnings. They won't block validation, but rich result-tagged properties are needed for full Google rich result eligibility.
| Property | Type | Description |
|---|---|---|
bestRating | number | The highest possible rating (typically 5). |
worstRating | number | The lowest possible rating (typically 1). |
author | Organization | The review platform collecting these ratings. |
Rich result type: Employer rating in job search results
Requirements: Required: itemReviewed (Organization being rated), ratingValue (numeric), and ratingCount (number of ratings).
{
"@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 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"}}}'100 free validations/month. No credit card required.