From 3a5f881e4674c1e2ebaf2f3e25155b3da3c3990e Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sat, 22 Feb 2025 17:44:39 +0100 Subject: [PATCH] add test data --- test_data/{ => Sample1}/product.json | 0 test_data/{ => Sample1}/user1.json | 0 test_data/{ => Sample1}/user2.json | 0 test_data/Sample2/multi.json | 20 ++++++++++++++++++++ 4 files changed, 20 insertions(+) rename test_data/{ => Sample1}/product.json (100%) rename test_data/{ => Sample1}/user1.json (100%) rename test_data/{ => Sample1}/user2.json (100%) create mode 100644 test_data/Sample2/multi.json diff --git a/test_data/product.json b/test_data/Sample1/product.json similarity index 100% rename from test_data/product.json rename to test_data/Sample1/product.json diff --git a/test_data/user1.json b/test_data/Sample1/user1.json similarity index 100% rename from test_data/user1.json rename to test_data/Sample1/user1.json diff --git a/test_data/user2.json b/test_data/Sample1/user2.json similarity index 100% rename from test_data/user2.json rename to test_data/Sample1/user2.json diff --git a/test_data/Sample2/multi.json b/test_data/Sample2/multi.json new file mode 100644 index 0000000..1262e73 --- /dev/null +++ b/test_data/Sample2/multi.json @@ -0,0 +1,20 @@ +[ + { + "id": "USER-001", + "name": "Alice Cooper", + "age": 28, + "tags": ["music", "art"] + }, + { + "id": "USER-002", + "name": "Bob Dylan", + "age": 35, + "interests": ["writing", "poetry"] + }, + { + "id": "PROD-001", + "name": "Guitar", + "price": 599.99, + "categories": ["music", "instruments"] + } +] \ No newline at end of file