Rated Stats Breaking change for Character Statistics API

There was a recent bug that was fixed that required a breaking change to the Character Statistics API this week and I wanted to point it out to the community.

There was a situation in which a Rated Stat could reflect an overflow error for rating:

    "melee_crit": {
        "rating": 4294967066,
        "rating_bonus": 0.87285715,
        "value": 5.872857,
    },

To properly resolve this, a new rating_normalized field was added which must now be handled differently than the old API response.

    "melee_crit": {
        "rating_bonus": 0.87285715,
        "value": 5.872857,
        "rating_normalized": 611
    },

We understand this is not an ideal solution and because of this we typically try to avoid breaking changes. Please update your services to take into account the new normalized field for all future uses, but falling back to the old field if necessary for older data.