Flipped tile in JSON format

Hi,

not sure if this is a bug or i am just expecting something different/not understanding the output.
How is a flipped tile represented in the JSON file format (CSV data)? Is this even possible with JSON?
Currently it is just represented as a very big number (e.g. 2147483714). How do i know what tile got flipped?

Thanks!

It uses the same bits as used in the TMX format. They are the high bits of the 32-bit unsigned integer, which hence leads to very big numbers in this format.

Ah i see. Thanks for the quick response!