go-toml/parse/testfiles/valid/BurntSushi/arrays-hetergeneous.json

47 lines
971 B
JSON

{
"mixed" : {
"type" : "array",
"value" : [
{
"type" : "array",
"value" : [
{
"value" : "1",
"type" : "integer"
},
{
"value" : "2",
"type" : "integer"
}
]
},
{
"value" : [
{
"value" : "a",
"type" : "string"
},
{
"value" : "b",
"type" : "string"
}
],
"type" : "array"
},
{
"value" : [
{
"value" : "1.1",
"type" : "float"
},
{
"type" : "float",
"value" : "2.1"
}
],
"type" : "array"
}
]
}
}