-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopulation_descriptors_data_model.json
More file actions
executable file
·86 lines (86 loc) · 3.07 KB
/
population_descriptors_data_model.json
File metadata and controls
executable file
·86 lines (86 loc) · 3.07 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
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
{
"name": "Population Descriptors Data Model",
"description": "Data model for population descriptors in genomic data",
"version": "1.0",
"tables": [
{
"table": "population_descriptor",
"columns": [
{
"column": "subject_id",
"required": true,
"data_type": "string"
},
{
"column": "population_descriptor",
"required": true,
"description": "a concept or classification scheme that categorizes people into groups (or “populations”) according to a perceived characteristic or dimension of interest",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "Race | Race | Ethnicity",
"notes": "delimited list (delim is '|')"
},
{
"column": "population_label",
"required": true,
"description": "name given to a population that describes or classifies it according to the dimension along which it was identified",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "Black | Asian | Not Hispanic",
"notes": "delimited list same length as population_descriptor (delim is '|')"
},
{
"column": "country_of_recruitment",
"data_type": "string",
"examples": "USA"
},
{
"column": "country_of_birth",
"data_type": "string",
"examples": "USA"
}
]
},
{
"table": "analysis",
"columns": [
{
"column": "population_descriptor",
"required": true,
"description": "a concept or classification scheme that categorizes people into groups (or “populations”) according to a perceived characteristic or dimension of interest",
"data_type": "string",
"examples": "reported ancestry"
},
{
"column": "population_labels",
"required": true,
"description": "name given to a population that describes or classifies it according to the dimension along which it was identified",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "Chinese American | European American | African American"
},
{
"column": "population_proportions",
"description": "proportion of participants from each population in the same order mapping to the values in the population_labels variable",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "0.7 | 0.1 | 0.2"
},
{
"column": "countries_of_recruitment",
"description": "Reported countries of recruitment",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "Ghana | Kenya | Nigeria"
},
{
"column": "countries_of_birth",
"description": "Reported countries of birth",
"data_type": "string",
"multi_value_delimiter": "|",
"examples": "Ghana | Kenya | Nigeria"
}
]
}
]
}