-
Notifications
You must be signed in to change notification settings - Fork 5
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
3 changed files
with
47 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
### SNOMED CT Swiss Extension | ||
Within the EPR, SNOMED CT is used for the metadata and in the exchange formats, see [here](index.html#metadata-annex-3-and-annex-9). | ||
SNOMED CT is designed so that the International Edition can be complemented by creating extensions to meet national or local requirements. Since December 2021, the Swiss Extension is available and includes translations in German, French and Italian. | ||
|
||
* [SNOMED CT Browser](https://browser.ihtsdotools.org/): International Edition & Swiss Extension | ||
* [Swiss Extension](https://confluence.ihtsdotools.org/display/DOCEXTPG/4.4.2+Edition+URI+Examples): | ||
* Focus Module ID: 2011000195101 | ||
* Edition URI: [http://snomed.info/sct/2011000195101](http://snomed.info/sct/2011000195101) | ||
|
||
#### Usage in Swiss Exchange Formats | ||
To illustrate how the SNOMED CT codes (international vs. Swiss extension) are used, examples of the CH EMED exchange format are shown below. | ||
|
||
**SNOMED CT international**: 721912009 "Medication summary document (record artifact)" | ||
|
||
Composition.type of a Medication Prescription document (see [full example](https://fhir.ch/ig/ch-emed/Bundle-2-6-MedicationPrescription.json.html)): | ||
```json | ||
"type" : { | ||
"coding" : [ | ||
{ | ||
"system" : "http://snomed.info/sct", | ||
"code" : "761938008", | ||
"display" : "Medicinal prescription record (record artifact)" | ||
} | ||
] | ||
} | ||
``` | ||
|
||
**SNOMED CT Swiss extension**: 82291000195104 "Medication dispense document (record artifact)" | ||
|
||
Composition.type of a Medication Dispense document (see [full example](https://fhir.ch/ig/ch-emed/Bundle-1-2-MedicationDispense.json.html)): | ||
```json | ||
"type" : { | ||
"coding" : [ | ||
{ | ||
"system" : "http://snomed.info/sct", | ||
"version" : "http://snomed.info/sct/2011000195101", | ||
"code" : "82291000195104", | ||
"display" : "Medication dispense document (record artifact)" | ||
} | ||
] | ||
} | ||
``` |
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