xxxxxxxxxx
import std.stdio;
import std.json;
void main()
{
string[][string] aa = [ "abc" : [], "def" : [], "ghi" : [] ];
auto asJSON = JSONValue(aa);
writeln(asJSON.toPrettyString);
}