...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/spec/array-of-tables-1.json

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/spec

     1{
     2  "fruits": [
     3    {
     4      "name": {
     5        "type": "string",
     6        "value": "apple"
     7      },
     8      "physical": {
     9        "color": {
    10          "type": "string",
    11          "value": "red"
    12        },
    13        "shape": {
    14          "type": "string",
    15          "value": "round"
    16        }
    17      },
    18      "varieties": [
    19        {
    20          "name": {
    21            "type": "string",
    22            "value": "red delicious"
    23          }
    24        },
    25        {
    26          "name": {
    27            "type": "string",
    28            "value": "granny smith"
    29          }
    30        }
    31      ]
    32    },
    33    {
    34      "name": {
    35        "type": "string",
    36        "value": "banana"
    37      },
    38      "varieties": [
    39        {
    40          "name": {
    41            "type": "string",
    42            "value": "plantain"
    43          }
    44        }
    45      ]
    46    }
    47  ]
    48}

View as plain text