mirror of
https://github.com/OMGeeky/json-summary.git
synced 2025-12-26 17:02:28 +01:00
Init
This commit is contained in:
31
test_data/product.json
Normal file
31
test_data/product.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"id": "PROD-123",
|
||||
"name": "Smart Watch",
|
||||
"price": 199.99,
|
||||
"in_stock": true,
|
||||
"categories": ["electronics", "wearables", "accessories"],
|
||||
"specifications": {
|
||||
"display": {
|
||||
"type": "OLED",
|
||||
"size": "1.5 inch",
|
||||
"resolution": "360x360"
|
||||
},
|
||||
"battery": {
|
||||
"capacity": "300mAh",
|
||||
"life": "48 hours"
|
||||
},
|
||||
"features": ["heart-rate", "gps", "waterproof"]
|
||||
},
|
||||
"variants": [
|
||||
{
|
||||
"color": "black",
|
||||
"sku": "SW-BLK-001",
|
||||
"price": 199.99
|
||||
},
|
||||
{
|
||||
"color": "silver",
|
||||
"sku": "SW-SLV-001",
|
||||
"price": 219.99
|
||||
}
|
||||
]
|
||||
}
|
||||
11
test_data/user1.json
Normal file
11
test_data/user1.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "John Doe",
|
||||
"age": 30,
|
||||
"email": "john@example.com",
|
||||
"address": {
|
||||
"street": "123 Main St",
|
||||
"city": "New York",
|
||||
"country": "USA"
|
||||
},
|
||||
"hobbies": ["reading", "gaming", "hiking"]
|
||||
}
|
||||
13
test_data/user2.json
Normal file
13
test_data/user2.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "Jane Smith",
|
||||
"age": 25,
|
||||
"email": "jane@example.com",
|
||||
"address": {
|
||||
"street": "456 Oak Ave",
|
||||
"city": "Los Angeles",
|
||||
"country": "USA",
|
||||
"zip": "90001"
|
||||
},
|
||||
"hobbies": ["painting", "music"],
|
||||
"occupation": "Software Engineer"
|
||||
}
|
||||
Reference in New Issue
Block a user