-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
59 lines (59 loc) · 1.26 KB
/
example.json
File metadata and controls
59 lines (59 loc) · 1.26 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
{
"company": {
"name": "Tech Innovations",
"founding_year": 2015,
"employees": [
{
"id": 1,
"name": "Alice",
"role": "Developer",
"skills": ["JavaScript", "Python", "React"],
"active": true,
"manager": {
"id": 101,
"name": "John Doe",
"role": "Lead Developer"
}
},
{
"id": 2,
"name": "Bob",
"role": "Designer",
"skills": ["Photoshop", "UI/UX", "Illustrator"],
"active": true,
"manager": {
"id": 102,
"name": "Jane Smith",
"role": "Lead Designer"
}
}
],
"projects": [
{
"project_id": "P001",
"name": "AI Platform",
"budget": 150000,
"deadline": "2025-12-31"
},
{
"project_id": "P002",
"name": "Blockchain App",
"budget": 100000,
"deadline": "2026-05-15"
}
],
"headquarters": {
"city": "San Francisco",
"state": "CA",
"country": "USA"
},
"contact": {
"phone": "+1-800-555-0199",
"email": "contact@techinnovations.com",
"social": {
"twitter": "@TechInno",
"facebook": "facebook.com/techinnovations"
}
}
}
}