-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
975 additions
and
1,427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
$schema: "http://json-schema.org/draft-04/schema#" | ||
|
||
id: "death" | ||
title: Death | ||
type: object | ||
nodeTerms: null | ||
namespace: https://imaging-hub.data-commons.org | ||
category: medical_history | ||
program: '*' | ||
project: '*' | ||
description: The death domain contains the clinical event for how and when a Person dies. A person can have up to one record if the source system contains evidence about the Death. | ||
additionalProperties: false | ||
submittable: true | ||
validators: null | ||
|
||
systemProperties: | ||
- id | ||
- project_id | ||
- state | ||
- created_datetime | ||
- updated_datetime | ||
|
||
links: | ||
- name: subjects | ||
backref: deaths | ||
label: related_to | ||
target_type: subject | ||
multiplicity: one_to_one | ||
required: true | ||
|
||
required: | ||
- submitter_id | ||
- type | ||
- subjects | ||
|
||
uniqueKeys: | ||
- [id] | ||
- [project_id, submitter_id] | ||
|
||
properties: | ||
|
||
$ref: "_definitions.yaml#/ubiquitous_properties" | ||
|
||
days_to_death: | ||
description: The difference in days between the subject's index_date and the date the subject was deceased. | ||
type: integer | ||
|
||
death_type_concept_id: | ||
description: A foreign key referring to the predefined concept identifier in the Standardized Vocabularies reflecting how the death was represented in the source data. | ||
type: string | ||
|
||
cause_concept_id: | ||
description: A foreign key referring to a standard concept identifier in the Standardized Vocabularies for conditions. | ||
type: string | ||
|
||
cause_source_value: | ||
description: The source code for the cause of death as it appears in the source data. This code is mapped to a standard concept in the Standardized Vocabularies and the original code is, stored here for reference. | ||
type: string | ||
|
||
cause_source_concept_id: | ||
description: A foreign key to the concept that refers to the code used in the source. Note, this variable name is abbreviated to ensure it will be allowable across database platforms. | ||
type: string | ||
|
||
site_id: The site ID. | ||
description: The site ID. | ||
type: string | ||
|
||
subjects: | ||
description: The submitter_id or id of the subject this Death describes, i.e., a link to a record in the parent node. | ||
$ref: "_definitions.yaml#/to_one" | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
$schema: "http://json-schema.org/draft-04/schema#" | ||
|
||
id: "device_exposure" | ||
title: Device Exposure | ||
type: object | ||
namespace: https://imaging-hub.data-commons.org | ||
category: clinical | ||
program: '*' | ||
project: '*' | ||
description: > | ||
The device exposure domain captures information about a person's exposure to a foreign physical object or instrument that which is used for diagnostic or therapeutic purposes through a mechanism beyond chemical action. Devices include implantable objects (e.g. pacemakers, stents, artificial joints), medical equipment and supplies (e.g. bandages, crutches, syringes), other instruments used in medical procedures (e.g. sutures, defibrillators) and material used in clinical care (e.g. adhesives, body material, dental material, surgical material). | ||
additionalProperties: false | ||
submittable: true | ||
validators: null | ||
|
||
systemProperties: | ||
- id | ||
- project_id | ||
- state | ||
- created_datetime | ||
- updated_datetime | ||
|
||
links: | ||
- name: subjects | ||
backref: device_exposures | ||
label: describes | ||
target_type: subject | ||
multiplicity: many_to_one | ||
required: true | ||
|
||
required: | ||
- type | ||
- submitter_id | ||
- subjects | ||
|
||
uniqueKeys: | ||
- [id] | ||
- [project_id, submitter_id] | ||
|
||
properties: | ||
$ref: "_definitions.yaml#/ubiquitous_properties" | ||
|
||
## OMOP Device exposure | ||
days_to_device_exposure_end: | ||
description: The difference in days between the subject's index_date and the end of device exposure. | ||
type: string | ||
|
||
days_to_device_exposure_start: | ||
description: The difference in days between the subject's index_date and the start of device exposure. | ||
type: string | ||
|
||
device_concept_id: | ||
description: A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Device concept. | ||
type: string | ||
|
||
device_source_concept_id: | ||
description: A foreign key to a Device Concept that refers to the code used in the source. | ||
type: string | ||
|
||
device_source_value: | ||
description: The source code for the Device as it appears in the source data. This code is mapped to a standard Device Concept in the Standardized Vocabularies and the original code is stored here for reference. | ||
type: string | ||
|
||
device_type_concept_id: | ||
description: A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of Device Exposure recorded. It indicates how the Device Exposure was represented in the source data. | ||
type: string | ||
|
||
provider_id: | ||
description: A foreign key to the provider in the PROVIDER table who initiated of administered the Device. | ||
type: string | ||
|
||
quantity: | ||
description: The number of individual Devices used for the exposure. | ||
type: string | ||
|
||
site_id: | ||
description: The site ID. | ||
type: string | ||
|
||
unique_device_id: | ||
description: A UDI or equivalent identifying the instance of the Device used in the Person. | ||
type: string | ||
|
||
visit_id: | ||
description: A foreign key to the visit in the VISIT table during which the device was used. | ||
type: string | ||
|
||
subjects: | ||
$ref: "_definitions.yaml#/to_one" |
Oops, something went wrong.