I'm not sure that we need objects, but lists could be very useful. Rather than mimicking JSON it could be good to have a modifier on the property, something like
myList :+ item one
myList :+ item two
which would, in json terms, be
{
myList: [ "item one", "item two"]
}