-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharacters.json
41 lines (41 loc) · 963 Bytes
/
characters.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
{
"characters": [
{
"name": "Luke Skywalker",
"height": 172,
"mass": 77,
"hair_color": "blond",
"skin_color": "fair",
"eye_color": "blue",
"birth_year": "19BBY",
"is_male": true
}, {
"name": "C-3PO",
"height": 167,
"mass": 75,
"hair_color": "n/a",
"skin_color": "gold",
"eye_color": "yellow",
"birth_year": "112BBY",
"is_male": true
}, {
"name": "Leia Organa",
"height": 150,
"mass": 49,
"hair_color": "brown",
"skin_color": "light",
"eye_color": "brown",
"birth_year": "19BBY",
"is_male": false
}, {
"name": "Darth Vader",
"height": 202,
"mass": 136,
"hair_color": "none",
"skin_color": "white",
"eye_color": "yellow",
"birth_year": "41.9BBY",
"is_male": true
}
]
}