git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/internal/toml-test/tests/valid/table/array-nest.json (about)

     1  {
     2    "albums": [
     3      {
     4        "name": {
     5          "type": "string",
     6          "value": "Born to Run"
     7        },
     8        "songs": [
     9          {
    10            "name": {
    11              "type": "string",
    12              "value": "Jungleland"
    13            }
    14          },
    15          {
    16            "name": {
    17              "type": "string",
    18              "value": "Meeting Across the River"
    19            }
    20          }
    21        ]
    22      },
    23      {
    24        "name": {
    25          "type": "string",
    26          "value": "Born in the USA"
    27        },
    28        "songs": [
    29          {
    30            "name": {
    31              "type": "string",
    32              "value": "Glory Days"
    33            }
    34          },
    35          {
    36            "name": {
    37              "type": "string",
    38              "value": "Dancing in the Dark"
    39            }
    40          }
    41        ]
    42      }
    43    ]
    44  }