It's just a regular JS object. JSON !== JavaScript object notation. E.g. according to the JSON spec, you should always quote property names (`{"foo":123}`) but regular JS doesn't require this (`{foo:123}`).
More: http://benalman.com/news/2010/03/theres-no-such-thing-as-a-j...