-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
towards better support of PCR tests and results in different coding s…
- Loading branch information
1 parent
0ad2470
commit 051fff3
Showing
2 changed files
with
30 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-- http://hl7.org/fhir/R4/v3/ObservationInterpretation/cs.html#v3-ObservationInterpretation-ObservationInterpretationDetection | ||
-- | ||
--code=POS | ||
-- display=Positive | ||
-- A presence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure. | ||
--code=NEG | ||
-- display=Negative | ||
-- An absence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure. | ||
|
||
create or replace view covid_symptom__define_pcr_custom as select * from (values | ||
('http://cumulus.smarthealthit.org', 'Negative', 'Negative', 'http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation', 'NEG', 'Negative') | ||
,('http://cumulus.smarthealthit.org', 'NEGATIVE', 'NEGATIVE', 'http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation', 'NEG', 'Negative') | ||
,('http://cumulus.smarthealthit.org', 'Positive', 'Positive', 'http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation', 'POS', 'Positive') | ||
,('http://cumulus.smarthealthit.org', 'POSITIVE', 'POSITIVE', 'http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation', 'POS', 'Positive') | ||
) AS t (from_system, from_code, from_display, system, code, display); |
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