-
Notifications
You must be signed in to change notification settings - Fork 2
/
consent_code.yaml
183 lines (180 loc) · 6.12 KB
/
consent_code.yaml
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
openapi: 3.0.0
servers: []
info:
version: "1.1.0"
title: Consent Codes
description: |
Data use conditions based on consent codes have been divided into data use categories and requirements. Requirements are conditions that would require some form of additional agreement on the part of the data provider or data user or additional criteria in order for the data to be reused. Data use categories were further divided into primary and secondary categories. Each resource should fall into only one primary category, whereas a number of secondary categories and requirements may also be applied.
Primary data use categories:
<table>
<tr>
<th>Abbreviation</th>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>NRES</td>
<td>no restrictions</td>
<td>No restrictions on data use.</td>
</tr>
<tr>
<td>GRU(CC)</td>
<td>general research use and clinical care</td>
<td>For health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.</td>
</tr>
<tr>
<td>HMB(CC)</td>
<td>health/medical/biomedical research and clinical care</td>
<td>Use of the data is limited to health/medical/biomedical purposes, does not include the study of population origins or ancestry.</td>
</tr>
<tr>
<td>DS-[XX](CC)</td>
<td>disease-specific research and clinical care</td>
<td>Use of the data
must be related to [disease].</td>
</tr>
<tr>
<td>POA</td>
<td>population origins/ancestry research</td>
<td>Use of the data is limited to
the study of population origins or ancestry.</td>
</tr>
</table>
<br/>
Secondary data use categories:
<table>
<tr>
<th>Abbreviation</th>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>RS-[XX]</td>
<td>other research-specific restrictions</td>
<td>Use of the data is limited to studies of [research type] (e.g., pediatric research).</td>
</tr>
<tr>
<td>RUO</td>
<td>research use only</td>
<td>Use of data is limited to research purposes (e.g., does not include its use in clinical care).</td>
</tr>
<tr>
<td>NMDS</td>
<td>no “general methods” research</td>
<td>Use of the data includes methods development research (e.g., development of software or algorithms) ONLY within the bounds of other data use limitations.</td>
</tr>
<tr>
<td>GSO</td>
<td>genetic studies only</td>
<td>Use of the data is limited to genetic studies only (i.e., no research using only the phenotype data).</td>
</tr>
</table>
<br/>
Data use requirements:
<table>
<tr>
<th>Abbreviation</th>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>NPU</td>
<td>not-for-profit use only</td>
<td>Use of the data is limited to not-for-profit organizations.</td>
</tr>
<tr>
<td>PUB</td>
<td>publication required</td>
<td>Requestor agrees to make results of studies using the data available to the larger scientific community.</td>
</tr>
<tr>
<td>COL-[XX]</td>
<td>collaboration required</td>
<td>Requestor must agree to collaboration with the primary study investigator(s).</td>
</tr>
<tr>
<td>RTN</td>
<td>return data to database/resource</td>
<td>Requestor must return derived/enriched data to the database/resource.</td>
</tr>
<tr>
<td>IRB</td>
<td>ethics approval required</td>
<td>Requestor must provide documentation of local IRB/REC approval.</td>
</tr>
<tr>
<td>GS-[XX]</td>
<td>geographical restrictions</td>
<td>Use of the data is limited to within [geographic region].</td>
</tr>
<tr>
<td>MOR-[XX]</td>
<td>publication moratorium/embargo</td>
<td>Requestor agrees not to publish results of studies until [date].</td>
</tr>
<tr>
<td>TS-[XX]</td>
<td>time limits on use</td>
<td>Use of data is approved for [x months].</td>
</tr>
<tr>
<td>US</td>
<td>user-specific restrictions</td>
<td>Use of data is limited to use by approved users.</td>
</tr>
<tr>
<td>PS</td>
<td>project-specific restrictions</td>
<td>Use of data is limited to use within an approved project.</td>
</tr>
<tr>
<td>IS</td>
<td>institution-specific restrictions</td>
<td>Use of data is limited to use within an approved institution.</td>
</tr>
</table>
contact:
email: [email protected]
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
externalDocs:
description: 'Consent Codes: Upholding Standard Data Use Conditions'
url: 'http://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1005772'
paths: {}
components:
schemas:
ConsentCodeDataUse:
type: object
required:
- primaryCategory
- version
properties:
primaryCategory:
$ref: '#/components/schemas/ConsentCodeDataUseCondition'
secondaryCategories:
type: array
items:
$ref: '#/components/schemas/ConsentCodeDataUseCondition'
requirements:
type: array
items:
$ref: '#/components/schemas/ConsentCodeDataUseCondition'
version:
type: string
description: Version of the data use specification.
example: 0.1
description: Data use of a resource based on consent codes.
ConsentCodeDataUseCondition:
type: object
required:
- code
properties:
code:
type: string
description: Consent code abbreviation.
example: NRES
description:
type: string
description: Description of the condition.
description: Data use condition.