aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/valid/table-array-nest.json
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/tests/valid/table-array-nest.json')
-rw-r--r--test-suite/tests/valid/table-array-nest.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/test-suite/tests/valid/table-array-nest.json b/test-suite/tests/valid/table-array-nest.json
new file mode 100644
index 0000000..c117afa
--- /dev/null
+++ b/test-suite/tests/valid/table-array-nest.json
@@ -0,0 +1,18 @@
+{
+ "albums": [
+ {
+ "name": {"type": "string", "value": "Born to Run"},
+ "songs": [
+ {"name": {"type": "string", "value": "Jungleland"}},
+ {"name": {"type": "string", "value": "Meeting Across the River"}}
+ ]
+ },
+ {
+ "name": {"type": "string", "value": "Born in the USA"},
+ "songs": [
+ {"name": {"type": "string", "value": "Glory Days"}},
+ {"name": {"type": "string", "value": "Dancing in the Dark"}}
+ ]
+ }
+ ]
+}