-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
68 lines (68 loc) · 1.58 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
{
"test": {
"message": "This is a simple message"
},
"someroute": {
"message": "You have hit the test route"
},
"pets": [
{
"name": "MeowPaws",
"category": " Cat",
"breed": " Unknown",
"adoptionPrice": " $50",
"imageUrl": "https://i.ytimg.com/vi/tntOCGkgt98/maxresdefault.jpg",
"id": "1"
},
{
"name": " Pepper",
"category": " Dog",
"breed": " Mutt",
"adoptionPrice": " $40",
"imageUrl": "http://www.dailypicsupdate.com/wp-content/uploads/2012/12/White-black-dog-wide-pocs.jpg",
"id": "2"
},
{
"name": " Tweeter",
"category": " Bird",
"breed": " Parakeet",
"adoptionPrice": " $50",
"imageUrl": "https://lafeber.com/pet-birds/wp-content/uploads/Parakeet-Category-Image-300x300.jpg",
"id": "3"
},
{
"name": "Floater",
"category": "Fish",
"breed": "Guppy",
"adoptionPrice": "$50",
"imageUrl": "https://i.ytimg.com/vi/IsJMyILWdz0/hqdefault.jpg",
"id": "SJWYizKWg"
}
],
"stores": [
{
"name": " The Litter Box",
"address": " 3534 E. Copper Rd.",
"city": " Scranton",
"state": " PA",
"postalCode": " 25398",
"id": "1"
},
{
"name": " The Litter Box",
"address": " 90 W. Vista Dr.",
"city": " Meridian",
"state": " ID",
"postalCode": " 83669",
"id": "2"
},
{
"name": " The Litter Box",
"address": " 5575 Haydn Rd.",
"city": " Scottsdale",
"state": " AZ",
"postalCode": " 85250",
"id": "3"
}
]
}