forked from Thinkful-Ed/full-stack-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathseed-data.json
102 lines (102 loc) · 2.06 KB
/
seed-data.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
99
100
101
102
{
"shelter": "Caring Kelley's Animal Shelter",
"location": "California",
"address": "123 Dummy Street",
"zipcode": 123456,
"type": "dogs",
"animals": [
{
"type": "dog",
"name": "Petunia",
"age": "4 years",
"status": "danger",
"additionalInfo": "special needs"
},
{
"type": "dog",
"name": "Heather",
"age": "10 years",
"status": "adopted",
"additionalInfo": "N/A"
},
{
"type": "dog",
"name": "Rover",
"age": "2 years",
"status": "searching",
"additionalInfo": "N/A"
},
{
"type": "dog",
"name": "Buttercup",
"age": "3 months",
"status": "searching",
"additionalInfo": "runt"
},
{
"type": "dog",
"name": "UnderDog",
"age": "3 years",
"status": "danger",
"additionalInfo": "has cancer"
},
{
"type": "dog",
"name": "Oswald",
"age": "15 years",
"status": "danger",
"additionalInfo": "not active"
}
]
}
{
"shelter": "Gordon's Animal Shelter/Taxidermy",
"location": "Utah",
"address": "13 Roadkill Lane",
"zipcode": 555555,
"type": "various",
"animals": [
{
"type": "dog",
"name": "Petunia",
"age": "4 years",
"status": "danger",
"additionalInfo": "special needs"
},
{
"type": "dog",
"name": "Petunia",
"age": "4 years",
"status": "danger",
"additionalInfo": "special needs"
},
{
"type": "cat",
"name": "Whiskers",
"age": "2 years",
"status": "searching",
"additionalInfo": "abandoned"
},
{
"type": "rabbit",
"name": "Horase",
"age": "2 years",
"status": "searching",
"additionalInfo": "stray"
},
{
"type": "parrot",
"name": "Pauley",
"age": "8 years",
"status": "danger",
"additionalInfo": "abandoned"
},
{
"type": "snake",
"name": "Petey",
"age": "2 years",
"status": "searching",
"additionalInfo": "abandoned"
}
]
}