-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
70 lines (70 loc) · 2.02 KB
/
db.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
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"users": [
{
"id": "1",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"age": 34,
"companyId": "1"
},
{
"id": "2",
"firstName": "Mark",
"lastName": "Williams",
"email": "[email protected]",
"age": 33,
"companyId": "2"
},
{
"id": "3",
"firstName": "Sara",
"lastName": "Smith",
"email": "[email protected]",
"age": 23,
"companyId": "3"
},
{
"firstName": "Brad",
"lastName": "Traversy",
"age": 35,
"email": "[email protected]",
"companyId": "4",
"id": "B1Ww3BIS-"
}
],
"companies": [
{
"id": "1",
"name": "Apple",
"description": "Apple Inc. is an American multinational technology company headquartered in Cupertino, California that designs, develops, and sells consumer electronics, computer software, and online services. ... Its online services include the iTunes Store, the iOS App Store and Mac App Store, Apple Music, and iCloud"
},
{
"id": "2",
"name": "Microsoft",
"description": "Microsoft Corporation, incorporated on September 22, 1993, is a technology company. The Company develops, licenses, and supports a range of software products, services and devices. The Company's segments include Productivity and Business Processes, Intelligent Cloud and More Personal Computing"
},
{
"id": "3",
"name": "Google",
"description": "Google was founded by Larry Page and Sergey Brin while they were students at Stanford University. The company was officially launched in September, 1998 in a friend's garage. ... The official mission statement of the company is to “organize the world's information and make it universally accessible and useful"
}
],
"profile": {
"name": "typicode"
}
}