summaryrefslogtreecommitdiffstats
path: root/internal/toml-test/tests/valid/array/mixed-string-table.json
diff options
context:
space:
mode:
Diffstat (limited to 'internal/toml-test/tests/valid/array/mixed-string-table.json')
-rw-r--r--internal/toml-test/tests/valid/array/mixed-string-table.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/internal/toml-test/tests/valid/array/mixed-string-table.json b/internal/toml-test/tests/valid/array/mixed-string-table.json
new file mode 100644
index 0000000..0de6a6e
--- /dev/null
+++ b/internal/toml-test/tests/valid/array/mixed-string-table.json
@@ -0,0 +1,38 @@
+{
+ "contributors": [
+ {
+ "type": "string",
+ "value": "Foo Bar \u003cfoo@example.com\u003e"
+ },
+ {
+ "email": {
+ "type": "string",
+ "value": "bazqux@example.com"
+ },
+ "name": {
+ "type": "string",
+ "value": "Baz Qux"
+ },
+ "url": {
+ "type": "string",
+ "value": "https://example.com/bazqux"
+ }
+ }
+ ],
+ "mixed": [
+ {
+ "k": {
+ "type": "string",
+ "value": "a"
+ }
+ },
+ {
+ "type": "string",
+ "value": "b"
+ },
+ {
+ "type": "integer",
+ "value": "1"
+ }
+ ]
+}