-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample.json
More file actions
33 lines (33 loc) · 785 Bytes
/
example.json
File metadata and controls
33 lines (33 loc) · 785 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
{
"name": "Alice Chen",
"age": 28,
"active": true,
"role": "Data Scientist",
"skills": ["Python", "SQL", "Pandas", "scikit-learn"],
"contact": {
"email": "alice@example.com",
"github": "https://github.com/alicechen",
"linkedin": "https://linkedin.com/in/alicechen"
},
"courses": [
{
"title": "Intro to ML",
"level": "beginner",
"completed": true,
"score": 94.5
},
{
"title": "Data Preparation & Baseline Modeling",
"level": "intermediate",
"completed": true,
"score": 88.0
},
{
"title": "Random Forest & XGBoost",
"level": "intermediate",
"completed": false,
"score": null
}
],
"notes": null
}