Skip to content

Commit e77160d

Browse files
committed
updates
1 parent 6fc7aa3 commit e77160d

File tree

6 files changed

+93
-441
lines changed

6 files changed

+93
-441
lines changed

gdcdictionary/schemas/condition.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,31 @@ properties:
4141

4242
$ref: "_definitions.yaml#/ubiquitous_properties"
4343

44+
45+
long_covid_diagnosis: # MIDRC prop
46+
description: "An indicator of whether the patient has ever been diagnosed with one of the following ICD-10 long COVID-19 conditions: U09.9 (Post COVID-19 condition, unspecified), G93.32 (Myalgic encephalomyelitis/chronic fatigue syndrome), and B94.8 (Sequelae of other specified infectious and parasitic diseases). 'Positive' means the patient was diagnosed with a long COVID condition, while 'Not Reported' means the patient has never been diagnosed with a long COVID condition."
47+
enum:
48+
- Positive
49+
- Not Reported
50+
51+
covid19_positive: # MIDRC prop
52+
description: "An indicator of whether the patient has ever had a positive COVID-19 test or been diagnosed with one of the following ICD-10 COVID-19 conditions: COVID-19 (U07. 1), Influenza due to unidentified influenza virus with other manifestations (J11.8), Post COVID-19 condition (U09.9), Myalgic encephalomyelitis/chronic fatigue syndrome (G93.32), or Sequelae of other specified infectious and parasitic diseases (B94.8). For more information about a patient's specific COVID-19 diagnosis, details can be found under Condition."
53+
enum:
54+
- "Yes"
55+
- "No"
56+
- "Indeterminate"
57+
- "Not Reported"
58+
59+
icu_indicator: # MIDRC prop
60+
description: Indicates whether the subject has been admitted to the ICU.
61+
type: boolean
62+
63+
ventilator_indicator: # MIDRC prop
64+
description: Indicates whether the subject has been on a ventilator.
65+
type: boolean
66+
67+
68+
4469
condition_code:
4570
description: The code for a specific codition, assigned by the code system.
4671
type: string

gdcdictionary/schemas/death.yaml

Lines changed: 0 additions & 74 deletions
This file was deleted.

gdcdictionary/schemas/imaging_series.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ properties:
6363
description: A URL where the imaging series can be viewed.
6464
type: string
6565

66-
object_ids:
67-
description: The list of file identifiers (object_ids, DRS URIs, or data GUIDs, etc.) for the imaging series, if applicable.
68-
type: array
69-
items:
70-
type: string
71-
7266
Manufacturer:
7367
description: (0008, 0070) Manufacturer
7468
type: string
@@ -81,6 +75,12 @@ properties:
8175
description: (0008, 0060) Modality
8276
type: string
8377

78+
object_ids:
79+
description: The list of file identifiers (object_ids, DRS URIs, or data GUIDs, etc.) for the imaging series, if applicable.
80+
type: array
81+
items:
82+
type: string
83+
8484
SeriesDescription:
8585
description: (0008, 103e) Series Description
8686
type: string

gdcdictionary/schemas/imaging_study.yaml

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,29 +47,43 @@ properties:
4747

4848
$ref: "_definitions.yaml#/ubiquitous_properties"
4949

50+
## Non-DICOM properties
51+
disease_type:
52+
description: The primary type of disease studied in this imaging study, if applicable.
53+
type: string
54+
55+
primary_site:
56+
description: The primary body site studied in this imaging study.
57+
type: string
58+
59+
## DICOM properties
5060
BodyPartExamined:
5161
description: (0018, 0015) Body Part Examined.
5262
type: array
5363
items:
5464
type: string
5565

56-
disease_type:
57-
description: The primary type of disease studied in this imaging study, if applicable.
58-
type: string
66+
# EthnicGroup: # use subject.ethnicity
67+
# description: (0010,2160) The ethnic group to which the patient belongs.
68+
# type: string
5969

60-
Modality:
61-
description: The modalities of the imaging study; derived from (0008, 0060) Modality.
70+
study_modality:
71+
description: The list of modalities in the imaging study; derived from (0008, 0060) Modality.
6272
type: array
6373
items:
6474
type: string
6575

6676
PatientAge:
6777
description: (0010,1010) The patient's age at the time of the imaging study.
6878
type: number
69-
70-
primary_site:
71-
description: The primary body site studied in this imaging study.
72-
type: string
79+
80+
# PatientID: # use subject.submitter_id
81+
# description: (0010,0020) A unique identifier for the patient.
82+
# type: string
83+
84+
# PatientSex: # use subject.gender
85+
# description: (0010,0040) the patient's sex; the biologic character or quality that distinguishes male and female from one another as expressed by analysis of the person's gonadal, morphologic (internal and external), chromosomal, and hormonal characteristics
86+
# type: string
7387

7488
StudyDescription:
7589
description: (0008, 1030) Study Description.

gdcdictionary/schemas/observation.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ properties:
4040

4141
$ref: "_definitions.yaml#/ubiquitous_properties"
4242

43+
44+
45+
4346
days_to_observation:
4447
description: The number of days from the index_date to the date of the observation.
4548
type: integer

0 commit comments

Comments
 (0)