Hummingbird v1

FREE
By vikhyat | Updated hace un mes | Entertainment
Popularity

7 / 10

Latency

61ms

Service Level

100%

Health Check

N/A

Back to All Discussions

Extraneous Ratings Information

Rapid account: Kbkarma
kbkarma
hace 10 años

I was just looking at the ratings element and wondering why it has so much data in it.

For me, it looks like this (using Python, the u means its unicode):
(u’rating’, {u’positive’: True, u’negative’: False, u’value’: 4, u’neutral’: False, u’unknown’: False, u’type’: {u’simple’: True, u’star_rating’: False}})

Instead of getting a string for the rating, we get all four simple ratings as booleans. Additionally, we get the star rating and both types as another dictionary.

I think this would probably be a better option, just due to neatness:
(u’rating’, {u’type’: u’simple’, u’rating’: u’positive’})
or
(u’rating’, {u’type’: u’stars’, u’rating’: u’5’})

Rapid account: Vikhyat
vikhyat Commented hace 10 años

Thanks for the feedback. I had left the “rating” field out of the Library Entry model documentation for exactly this reason. It will indeed be changed to {type: (“simple” | “advanced”), rating: (0.5 | 1 | 1.5 | … | 5 | null)} shortly.

Rapid account: Halvkant
halvkant Commented hace 10 años

Will we have to do the conversion between simple and advanced rating modes on the client side or will it happen via server-side methods (or at least some documentation)?

Rapid account: Vikhyat
vikhyat Commented hace 10 años

Format has been updated – the rating field now returns {"type":"advanced","value":"4.0"}.

Conversion between rating types needs to be done client-side. The rules for conversion are:
[0, 2.4] -> negative
(2.4, 3.6) -> neutral
[3.6, 5] -> positive

I will be documenting this soon.

Join in the discussion - add comment below:

Login / Signup to post new comments