generatedata
generatedata copied to clipboard
Boolean values in JSON
Setup

JSON output
[
{
"bool": "false"
},
{
"bool": "true"
}
]
What's wrong
Boolean values in JSON must not be quoted.
From http://json.org/:
A value can be a string in double quotes, or a number, or
trueorfalseornull, or an object or an array.
Thanks @alexanderfefelov - I'll try to get this into the next version.