-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory_data.json
More file actions
82 lines (82 loc) · 2.22 KB
/
inventory_data.json
File metadata and controls
82 lines (82 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[
{
"id": "a1b2c3d4",
"name": "Laptop",
"price": 999.99,
"quantity": 10,
"category": "Electronics",
"created_at": "2025-05-15T20:00:00",
"updated_at": "2025-05-15T20:00:00",
"type": "PhysicalProduct",
"weight": 2.5,
"dimensions": {
"length": 35.0,
"width": 25.0,
"height": 2.5
}
},
{
"id": "e5f6g7h8",
"name": "Desk Chair",
"price": 149.99,
"quantity": 5,
"category": "Furniture",
"created_at": "2025-05-15T20:01:00",
"updated_at": "2025-05-15T20:01:00",
"type": "PhysicalProduct",
"weight": 12.0,
"dimensions": {
"length": 60.0,
"width": 60.0,
"height": 100.0
}
},
{
"id": "i9j0k1l2",
"name": "Antivirus Software",
"price": 49.99,
"quantity": 100,
"category": "Software",
"created_at": "2025-05-15T20:02:00",
"updated_at": "2025-05-15T20:02:00",
"type": "DigitalProduct",
"file_size": 250.0,
"download_link": "https://example.com/antivirus/download"
},
{
"id": "m3n4o5p6",
"name": "E-book: Python Programming",
"price": 29.99,
"quantity": 200,
"category": "Books",
"created_at": "2025-05-15T20:03:00",
"updated_at": "2025-05-15T20:03:00",
"type": "DigitalProduct",
"file_size": 15.0,
"download_link": "https://example.com/ebook/python"
},
{
"id": "q7r8s9t0",
"name": "Web Development Consultation",
"price": 150.0,
"quantity": 20,
"category": "Consulting",
"created_at": "2025-05-15T20:04:00",
"updated_at": "2025-05-15T20:04:00",
"type": "ServiceProduct",
"duration": 60,
"service_type": "Technical"
},
{
"id": "u1v2w3x4",
"name": "Graphic Design Service",
"price": 200.0,
"quantity": 15,
"category": "Design",
"created_at": "2025-05-15T20:05:00",
"updated_at": "2025-05-15T20:05:00",
"type": "ServiceProduct",
"duration": 120,
"service_type": "Creative"
}
]