I would like to request a change to wow/item schema for gems, at this time bonuses are specified as a single string, as it is now (from http://us.battle.net/api/wow/item/40162):
"gemInfo":{ "bonus":{ "name":"+10 Expertise Rating and +10 Hit Rating", which requires parsing to get exact bonuses. Having bonuses specified the same way they are for items would be convenient. I.e. e.g.: "bonusStats":[ { "stat":32, "amount":43 }, { "stat":3, "amount":38 } ] |
|
Well, kind of. When we have a piece of data, either in the form of a character or an item, it is in a raw form similar to how we expose it through the API. It would be accurate to say that most framework and infrastructure (read as: complexity) of our website is making sense of the data and presenting it in a human readable form. All of the stats and aggregates presented on and through this site are calculated by the Wow community site application from the raw values given to us from various data sources. |
|
tl;dr We mostly deal with raw data and have to do a lot of voodoo and trickery to make things pretty and in the language you want. Doesn't really answer the OP question as it was more cometary on how our process and applications work. |