-
Notifications
You must be signed in to change notification settings - Fork 1
/
catalog.json
103 lines (103 loc) · 2.36 KB
/
catalog.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"categories": [
{
"name": "Monitores",
"products": [
{
"id": 1,
"name": "ASUS LED VS197DE",
"price": 74.10,
"image": "monitor-asus",
"specs": {
"Interfaz": "VGA",
"Resolución": "1366x768",
"Tamaño panel": "18.5\""
}
},
{
"id": 2,
"name": "LG 20EN3",
"price": 86.50,
"image": "monitor-lg",
"specs": {
"Interfaz": "VGA",
"Resolución": "1600x900",
"Tamaño panel": "19.5\""
}
},
{
"id": 3,
"name": "ACER H236HLBMID",
"price": 160.00,
"image": "monitor-acer",
"specs": {
"Interfaz": "VGA, DVI y HDMI",
"Resolución": "1920x1080",
"Tamaño panel": "23\""
}
}
]
},
{
"name": "Ratones",
"products": [
{
"id": 4,
"name": "Logitech B100",
"price": 9.10,
"image": "raton-logitech",
"specs": {
"Interfaz": "USB",
"Botones": "3 botones y rueda",
"Color": "Negro",
"Resolución": "800 dpi"
}
},
{
"id": 5,
"name": "Genius NX-6500",
"price": 11.90,
"image": "raton-genius",
"specs": {
"Interfaz": "USB, Inalámbrico",
"Botones": "3 botones y rueda",
"Color": "Plateado",
"Resolución": "1200 dpi",
"Peso": "57 gr"
}
}
]
},
{
"name": "Discos duros",
"products": [
{
"id": 6,
"name": "Seagate ST1000DM003",
"price": 51.70,
"image": "disco-seagate",
"specs": {
"Interfaz": "SATA III",
"Caché": "64 MiB",
"Velocidad": "7200 rpm",
"Capacidad": "1 TiB",
"Tamaño": "3,5\""
}
},
{
"id": 7,
"name": "WD RED 2TB",
"price": 90.00,
"image": "disco-wd",
"specs": {
"Interfaz": "SATA III",
"Caché": "64 MiB",
"Velocidad": "7200 rpm",
"Capacidad": "2 TiB",
"Tamaño": "3,5\""
}
}
]
}
]
}