You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2021. It is now read-only.
When I place a request of reformat and validate my json which contains a long integer, jsonlint is displaying the wrong output in reformatted json.
ex:
original: {"response":{"timestamp":1310033637419,"body":{"session":4261667034108713961},"type":"xxxxxxxx","version":"0.1.0.0"}}
reformatted:
CONVERTED:
{
"response": {
"timestamp": 1310033637419,
"body": {
"session": 4261667034108714000
},
"type": "xxxxxxxx",
"version": "0.1.0.0"
}
}
In the above example, "session" value is being modified by jsonlint while reformatting. not returning the original value.
Cheers,
KK