I am trying to build an object like following in Jsonnet, but I couldn't work out a way to present it in Jsonnet.
"properties" :{
"a" : "value for a",
"b" : "value for b",
...
"nested" : {
"a" : "value for a",
"b" : "value for b",
...
}
}
Basically, I am looking for a way to refer to the following part in the parent object:
"a" : "value for a",
"b" : "value for b",
...