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:
Abbreviation Name Description
NRES no restrictions No restrictions on data use.
GRU(CC) general research use and clinical care For health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.
HMB(CC) health/medical/biomedical research and clinical care Use of the data is limited to health/medical/biomedical purposes, does not include the study of population origins or ancestry.
DS-[XX](CC) disease-specific research and clinical care Use of the data must be related to [disease].
POA population origins/ancestry research Use of the data is limited to the study of population origins or ancestry.

Secondary data use categories:
Abbreviation Name Description
RS-[XX] other research-specific restrictions Use of the data is limited to studies of [research type] (e.g., pediatric research).
RUO research use only Use of data is limited to research purposes (e.g., does not include its use in clinical care).
NMDS no “general methods” research Use of the data includes methods development research (e.g., development of software or algorithms) ONLY within the bounds of other data use limitations.
GSO genetic studies only Use of the data is limited to genetic studies only (i.e., no research using only the phenotype data).

Data use requirements:
Abbreviation Name Description
NPU not-for-profit use only Use of the data is limited to not-for-profit organizations.
PUB publication required Requestor agrees to make results of studies using the data available to the larger scientific community.
COL-[XX] collaboration required Requestor must agree to collaboration with the primary study investigator(s).
RTN return data to database/resource Requestor must return derived/enriched data to the database/resource.
IRB ethics approval required Requestor must provide documentation of local IRB/REC approval.
GS-[XX] geographical restrictions Use of the data is limited to within [geographic region].
MOR-[XX] publication moratorium/embargo Requestor agrees not to publish results of studies until [date].
TS-[XX] time limits on use Use of data is approved for [x months].
US user-specific restrictions Use of data is limited to use by approved users.
PS project-specific restrictions Use of data is limited to use within an approved project.
IS institution-specific restrictions Use of data is limited to use within an approved institution.
contact: email: ga4gh-dwg-beacon@genomicsandhealth.org 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.