go-toml/parse/testfiles/valid/iarna/spec-array-of-tables-2.json

49 lines
1008 B
JSON

{
"fruit" : [
{
"physical" : {
"color" : {
"value" : "red",
"type" : "string"
},
"shape" : {
"type" : "string",
"value" : "round"
}
},
"variety" : [
{
"name" : {
"type" : "string",
"value" : "red delicious"
}
},
{
"name" : {
"type" : "string",
"value" : "granny smith"
}
}
],
"name" : {
"value" : "apple",
"type" : "string"
}
},
{
"variety" : [
{
"name" : {
"type" : "string",
"value" : "plantain"
}
}
],
"name" : {
"value" : "banana",
"type" : "string"
}
}
]
}