-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed-data.json
More file actions
96 lines (95 loc) · 2.73 KB
/
Copy pathseed-data.json
File metadata and controls
96 lines (95 loc) · 2.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"_note": "Sample seed data for local development only. Passwords here are PLAINTEXT placeholders meant to be hashed (e.g. bcrypt) by your seed script before insertion into the database — never store or commit real plaintext passwords.",
"users": [
{
"id": "usr_001",
"email": "alice@example.com",
"password": "Password123!",
"profile": {
"fullName": "Alice Nakamura",
"displayName": "alice",
"bio": "Product designer who likes clean UIs.",
"createdAt": "2025-01-14T09:32:00Z",
"role": "user"
},
"files": [
{
"id": "file_001",
"ownerId": "usr_001",
"fileName": "resume_alice.pdf",
"mimeType": "application/pdf",
"sizeBytes": 84213,
"uploadedAt": "2025-01-15T10:02:00Z"
},
{
"id": "file_002",
"ownerId": "usr_001",
"fileName": "profile_photo.jpg",
"mimeType": "image/jpeg",
"sizeBytes": 231044,
"uploadedAt": "2025-01-16T14:20:00Z"
}
]
},
{
"id": "usr_002",
"email": "bob@example.com",
"password": "Password123!",
"profile": {
"fullName": "Bob Alvarez",
"displayName": "bob",
"bio": "Backend engineer, coffee enthusiast.",
"createdAt": "2025-02-02T11:15:00Z",
"role": "user"
},
"files": [
{
"id": "file_003",
"ownerId": "usr_002",
"fileName": "project_notes.txt",
"mimeType": "text/plain",
"sizeBytes": 5210,
"uploadedAt": "2025-02-03T09:40:00Z"
},
{
"id": "file_004",
"ownerId": "usr_002",
"fileName": "invoice_march.pdf",
"mimeType": "application/pdf",
"sizeBytes": 62890,
"uploadedAt": "2025-03-01T08:05:00Z"
}
]
},
{
"id": "usr_003",
"email": "carol@example.com",
"password": "Password123!",
"profile": {
"fullName": "Carol Whitfield",
"displayName": "carol",
"bio": "QA lead focused on security testing.",
"createdAt": "2025-03-10T16:48:00Z",
"role": "user"
},
"files": [
{
"id": "file_005",
"ownerId": "usr_003",
"fileName": "test_plan.docx",
"mimeType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"sizeBytes": 41200,
"uploadedAt": "2025-03-11T12:30:00Z"
},
{
"id": "file_006",
"ownerId": "usr_003",
"fileName": "vacation.png",
"mimeType": "image/png",
"sizeBytes": 512300,
"uploadedAt": "2025-04-02T18:00:00Z"
}
]
}
]
}