I have a structure which is an object at the top level, containing mainly strings as values and one nested object. It should look something like:
{
"name" : "expand",
"type" : "2",
"code" : "...",
"options" : {
"atb" : {
"description" : "..",
"value" : true
}
}
I'm guessing that because JSObject holds a list of key/value pairs, there is no way of mixing different value types on the same level. This seems like a huge limitation so I'm hoping I'm wrong!
atbas the key and another JSObject as the value.