-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.json
More file actions
36 lines (36 loc) · 686 Bytes
/
main.json
File metadata and controls
36 lines (36 loc) · 686 Bytes
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
{
"users": [
{
"id": 1,
"name": "Ana Martínez",
"email": "ana.martinez@example.com",
"role": "admin",
"active": true,
"created_at": "2025-09-01T10:00:00Z"
},
{
"id": 2,
"name": "Luis Gómez",
"email": "luis.gomez@example.com",
"role": "user",
"active": true,
"created_at": "2025-09-03T14:30:00Z"
},
{
"id": 3,
"name": "Sofía Torres",
"email": "sofia.torres@example.com",
"role": "user",
"active": false,
"created_at": "2025-08-25T08:15:00Z"
},
{
"id": 4,
"name": "Carlos Ruiz",
"email": "carlos.ruiz@example.com",
"role": "moderator",
"active": true,
"created_at": "2025-09-05T12:45:00Z"
}
]
}