When exporting a %JSON.Adaptor inherited class, undefined %Boolean properties are exported to JSON as "false" instead of null or empty
is there any way to control this behavior?
Class Test.Json extends%JSON.Adaptor
{
Property bool as%Boolean;
}
set test = ##class(Test.Json).%New()
do test.%JSONExport()
{
"bool": false
}