go-toml/parse/testfiles/valid/BurntSushi/table-array-nest.json

45 lines
945 B
JSON

{
"albums" : [
{
"name" : {
"type" : "string",
"value" : "Born to Run"
},
"songs" : [
{
"name" : {
"type" : "string",
"value" : "Jungleland"
}
},
{
"name" : {
"type" : "string",
"value" : "Meeting Across the River"
}
}
]
},
{
"songs" : [
{
"name" : {
"type" : "string",
"value" : "Glory Days"
}
},
{
"name" : {
"type" : "string",
"value" : "Dancing in the Dark"
}
}
],
"name" : {
"value" : "Born in the USA",
"type" : "string"
}
}
]
}