-
Notifications
You must be signed in to change notification settings - Fork 0
/
petstore_db.json
98 lines (98 loc) · 2.26 KB
/
petstore_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
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
97
98
{
"pets": [
{
"id": 1,
"name": "Max",
"category": {
"id": 101,
"name": "Dog"
},
"photoUrls": [
"https://example.com/photos/max1.jpg",
"https://example.com/photos/max2.jpg"
],
"tags": [
{
"id": 201,
"name": "friendly"
},
{
"id": 202,
"name": "playful"
}
],
"status": "available"
},
{
"id": 2,
"name": "Whiskers",
"category": {
"id": 102,
"name": "Cat"
},
"photoUrls": [
"https://example.com/photos/whiskers1.jpg",
"https://example.com/photos/whiskers2.jpg"
],
"tags": [
{
"id": 203,
"name": "independent"
},
{
"id": 204,
"name": "quiet"
}
],
"status": "sold"
}
],
"categories": [
{
"id": 101,
"name": "Dog"
},
{
"id": 102,
"name": "Cat"
},
{
"id": 103,
"name": "Bird"
}
],
"orders": [
{
"id": 301,
"petId": 1,
"quantity": 2,
"shipDate": "2024-10-01T14:30:00Z",
"status": "shipped",
"complete": true
},
{
"id": 302,
"petId": 2,
"quantity": 1,
"shipDate": "2024-10-03T11:00:00Z",
"status": "pending",
"complete": false
},
{
"id": 303,
"petId": 1,
"quantity": 1,
"shipDate": "2024-10-05T16:00:00Z",
"status": "pending",
"complete": false
},
{
"id": 303,
"petId": 1,
"quantity": 1,
"shipDate": "2024-10-05T16:00:00Z",
"status": "pending",
"complete": false
}
]
}