Right now it looks like this if no reviews have been added:
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "0",
"bestRating": "5",
"worstRating": "0",
"ratingCount": "1",
"reviewCount": "1"
}
Isn't it more correct like this?
{
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "5",
"worstRating": "0",
"reviewCount": "0"
}
}
Or maybe worstRating should be 1 because you should not be able to rate as 0 if you ask me.