-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_animals.json
114 lines (114 loc) · 2.56 KB
/
sample_animals.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
103
104
105
106
107
108
109
110
111
112
113
114
[
{
"Name": "Luna",
"Species": "Dog",
"Color": "Black",
"Weight": 25.5,
"Height": 18,
"Gender": "Female",
"Age": 3,
"FavoriteFoods": [
"Chicken",
"Beef",
"Pork"
],
"NestedObject": {
"NestedProperty": "NestedValue",
"NestedArray": [
"NestedArrayValue1",
"NestedArrayValue2"
],
"NestedObject2": {
"NestedProperty2": "NestedValue",
"NestedArray2": [
"NestedArrayValue1",
"NestedArrayValue2"
]
}
}
},
{
"Name": "Max",
"Species": "Cat",
"Color": "Orange",
"Weight": 10.2,
"Height": 12,
"Gender": "Male",
"Age": 5,
"FavoriteFoods": [
"Chicken",
"Beef",
"Pork"
],
"NestedObject": {
"NestedProperty": "NestedValue",
"NestedArray": [
"NestedArrayValue1",
"NestedArrayValue2"
]
}
},
{
"Name": "Rocky",
"Species": "Turtle",
"Color": "Green",
"Weight": 2,
"Height": 6,
"Gender": "Male",
"Age": 10,
"FavoriteFoods": [
"Chicken",
"Beef",
"Pork"
],
"NestedObject": {
"NestedProperty": "NestedValue",
"NestedArray": [
"NestedArrayValue1",
"NestedArrayValue2"
]
}
},
{
"Name": "Bella",
"Species": "Rabbit",
"Color": "White",
"Weight": 5.2,
"Height": 8,
"Gender": "Female",
"Age": 2,
"FavoriteFoods": [
"Chicken",
"Beef",
"Pork"
],
"NestedObject": {
"NestedProperty": "NestedValue",
"NestedArray": [
"NestedArrayValue1",
"NestedArrayValue2"
]
}
},
{
"Name": "Charlie",
"Species": "Hamster",
"Color": "Brown",
"Weight": 0.2,
"Height": 4,
"Gender": "Male",
"Age": 1,
"FavoriteFoods": [
"Chicken",
"Beef",
"Pork"
],
"NestedObject": {
"NestedProperty": "NestedValue",
"NestedArray": [
"NestedArrayValue1",
"NestedArrayValue2"
]
}
}
]