Annual Leave Calculator
Rating Example
This page demonstrates a simple star rating widget that collects user ratings without written reviews. The ratings can be used for Google rich results.
Calculator Rating
Rate this Calculator
Tap a star to rate
How it works
1. Users click on stars to rate (1-5)
2. No written review is required
3. The rating data is structured for Google rich results
Technical Details
JSON-LD Schema
The rating widget automatically generates the following structured data:
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Annual Leave Calculator",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"bestRating": "5",
"worstRating": "1",
"ratingCount": "1"
}
}Implementation
In a real application, you would store these ratings in a database and aggregate them across all users. The aggregated data would then be used to generate the structured data with accurate rating values and counts.
