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

35 lines
668 B
JSON

{
"people" : [
{
"last_name" : {
"type" : "string",
"value" : "Springsteen"
},
"first_name" : {
"type" : "string",
"value" : "Bruce"
}
},
{
"last_name" : {
"value" : "Clapton",
"type" : "string"
},
"first_name" : {
"type" : "string",
"value" : "Eric"
}
},
{
"first_name" : {
"type" : "string",
"value" : "Bob"
},
"last_name" : {
"value" : "Seger",
"type" : "string"
}
}
]
}