Skip to content

Commit 8ac00ca

Browse files
Merge pull request #159 from OHDSI/cdm_v5.3.-bugfix.2
closes #140, #144, #135
2 parents 97d9350 + e853fe2 commit 8ac00ca

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

BigQuery/OMOP CDM bigquery ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ create table cost
578578
payer_plan_period_id integer null ,
579579
amount_allowed float null ,
580580
revenue_code_concept_id integer null ,
581-
reveue_code_source_value varchar(50) null,
581+
revenue_code_source_value varchar(50) null,
582582
drg_concept_id integer null,
583583
drg_source_value varchar(3) null
584584
)

Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Field|Required|Type|Description
88
|definition_type_concept_id|Yes|integer|Type defining what kind of Cohort Definition the record represents and how the syntax may be executed|
99
|cohort_definition_syntax|No|varchar(MAX)|Syntax or code to operationalize the Cohort definition|
1010
|subject_concept_id|Yes|integer|A foreign key to the Concept to which defines the domain of subjects that are members of the cohort (e.g., Person, Provider, Visit).|
11-
|cohort_instantiation_date|No|Date|A date to indicate when the Cohort was instantiated in the COHORT table|
11+
|cohort_initiation_date|No|Date|A date to indicate when the Cohort was instantiated in the COHORT table|
1212

1313
### Conventions
1414
* The cohort_definition_syntax does not prescribe any specific syntax or programming language. Typically, it would be any flavor SQL, a cohort definition language, or a free-text description of the algorithm.

Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ The CONCEPT_SYNONYM table is used to store alternate names and descriptions for
88

99
### Conventions
1010

11-
* The concept_name field contains a valid Synonym of a concept, including the description in the concept_name itself. I.e. each Concept has at least one Synonym in the CONCEPT_SYNONYM table. As an example, for a SNOMED-CT Concept, if the fully specified name is stored as the concept_name of the CONCEPT table, then the Preferred Term and Synonyms associated with the Concept are stored in the CONCEPT_SYNONYM table.
11+
* The concept_synonym_name field contains a valid Synonym of a concept, including the description in the concept_name itself. I.e. each Concept has at least one Synonym in the CONCEPT_SYNONYM table. As an example, for a SNOMED-CT Concept, if the fully specified name is stored as the concept_name of the CONCEPT table, then the Preferred Term and Synonyms associated with the Concept are stored in the CONCEPT_SYNONYM table.
1212
* Only Synonyms that are active and current are stored in the CONCEPT_SYNONYM table. Tracking synonym/description history and mapping of obsolete synonyms to current Concepts/Synonyms is out of scope for the Standard Vocabularies.
1313
* Currently, only English Synonyms are included.

Impala/OMOP CDM impala ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ CREATE TABLE cost
11871187

11881188
revenue_code_concept_id INTEGER,
11891189

1190-
reveue_code_source_value VARCHAR(50),
1190+
revenue_code_source_value VARCHAR(50),
11911191

11921192
drg_concept_id INTEGER,
11931193

Netezza/OMOP CDM netezza ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ CREATE TABLE cost
695695
payer_plan_period_id INTEGER NULL ,
696696
amount_allowed REAL NULL ,
697697
revenue_code_concept_id INTEGER NULL ,
698-
reveue_code_source_value VARCHAR(50) NULL,
698+
revenue_code_source_value VARCHAR(50) NULL,
699699
drg_concept_id INTEGER NULL,
700700
drg_source_value VARCHAR(3) NULL
701701
)

Oracle/OMOP CDM oracle ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ CREATE TABLE cost
650650
payer_plan_period_id INTEGER NULL ,
651651
amount_allowed FLOAT NULL ,
652652
revenue_code_concept_id INTEGER NULL ,
653-
reveue_code_source_value VARCHAR(50) NULL,
653+
revenue_code_source_value VARCHAR(50) NULL,
654654
drg_concept_id INTEGER NULL,
655655
drg_source_value VARCHAR(3) NULL
656656
)

ParallelDataWarehouse/OMOP CDM pdw ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE cost
616616
payer_plan_period_id INTEGER NULL ,
617617
amount_allowed FLOAT NULL ,
618618
revenue_code_concept_id INTEGER NULL ,
619-
reveue_code_source_value VARCHAR(50) NULL,
619+
revenue_code_source_value VARCHAR(50) NULL,
620620
drg_concept_id INTEGER NULL,
621621
drg_source_value VARCHAR(3) NULL
622622
)

PostgreSQL/OMOP CDM postgresql ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ CREATE TABLE cost
650650
payer_plan_period_id INTEGER NULL ,
651651
amount_allowed NUMERIC NULL ,
652652
revenue_code_concept_id INTEGER NULL ,
653-
reveue_code_source_value VARCHAR(50) NULL,
653+
revenue_code_source_value VARCHAR(50) NULL,
654654
drg_concept_id INTEGER NULL,
655655
drg_source_value VARCHAR(3) NULL
656656
)

Redshift/OMOP CDM redshift ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ CREATE TABLE cost
616616
payer_plan_period_id INTEGER NULL ,
617617
amount_allowed FLOAT NULL ,
618618
revenue_code_concept_id INTEGER NULL ,
619-
reveue_code_source_value VARCHAR(50) NULL,
619+
revenue_code_source_value VARCHAR(50) NULL,
620620
drg_concept_id INTEGER NULL,
621621
drg_source_value VARCHAR(3) NULL
622622
)

Sql Server/OMOP CDM sql server ddl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ CREATE TABLE cost
650650
payer_plan_period_id INTEGER NULL ,
651651
amount_allowed FLOAT NULL ,
652652
revenue_code_concept_id INTEGER NULL ,
653-
reveue_code_source_value VARCHAR(50) NULL,
653+
revenue_code_source_value VARCHAR(50) NULL,
654654
drg_concept_id INTEGER NULL,
655655
drg_source_value VARCHAR(3) NULL
656656
)

0 commit comments

Comments
 (0)