-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson-documentation.txt
More file actions
55 lines (54 loc) · 1.29 KB
/
json-documentation.txt
File metadata and controls
55 lines (54 loc) · 1.29 KB
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
Species (maybe later)
Region,
Percentage of people in this region,
Genders (names),
GenderName:
Percentage with this gender
Names,
Name,
Percentage
Religions (names),
Religion Name, Percentage
Percentage with this religion (in this region)
Political Parties (names),
Party name, Percentage
Percentage with this party (in this region)
Jobs,
Percentage of people with this job
Ages,
Percentage of people with this age
example:
{
"Data_testregion1": {
"population": 99.0,
"Genders": {
"Male": {
"population": 50.0, "Names": {
"Matthew":20.0, "Andrew": 19.0, "David": 21.0, "Seth": 10.0, "Riley": 10.0, "Luke": 20.0
}
},
"Female": {
"population": 49.0, "Names": {
"Ophelia": 80.0, "Olivia": 20.0
}
},
"O": {
"population": 1.0, "Names": {
"O": 100.0
}
}
},
"Religions": {
"Christian": 100.0,
},
"Political Parties": {
"Democratic": 50.0, "Republican": 50.0
},
"Jobs": {
"Job1": 20.0, "Job2": 80.0
},
"Ages": {
10: 100.0
}
}
}