Last updated
"ReviewRating": {
"type": "object",
"properties": {
// THE ORIGINAL RATING
"originalRatingValue": {
"type": "integer"
},
// THE ORIGINAL ALTERNATE NAME
"originalAlternateName": {
"type": "string"
},
// THE LABEL FOR THE NORMALIZED RATING (Questionable, Neutral, No Issues)
"alternateName": {
"type": "integer"
},
// THE BEST RATING VALUE (IN OUR CASE ALWAYS 3)
"bestRating": {
"type": "integer"
},
// THE WORST RATING VALUE (IN OUR CASE ALWAYS 1)
"worstRating": {
"type": "integer"
},
// THE NORMALIZED RATING VALUE
"ratingValue": {
"type": "integer"
}
}
},