-
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.
Merge pull request #212 from hl7ch/204_eCH-contact
204_eCH-contact
- Loading branch information
Showing
29 changed files
with
1,552 additions
and
35 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,2 @@ | ||
|
||
{% include list-extensions.xhtml %} |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
### Resource Profiles | ||
The following profiles set the minimum expectations to record, search and fetch health data associated with a Patient: | ||
|
||
{% include list-profiles.xhtml %} | ||
|
||
|
||
### Data Type Profiles | ||
These define constraints on FHIR data types for systems conforming to this implementation guide: | ||
|
||
<div> | ||
{% for sd_hash in site.data.structuredefinitions -%} | ||
{%- assign sd = sd_hash[1] -%} | ||
{%- if sd.kind == "complex-type" and sd.type != "Extension" -%} | ||
|
||
<li> | ||
<a href="{{sd.path}}">{{sd.title}}</a> | ||
</li> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
|
||
</div> |
This file was deleted.
Oops, something went wrong.
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,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CodeSystem xmlns="http://hl7.org/fhir"> | ||
<id value="ech-46-emailcategory"/> | ||
<url value="http://fhir.ch/ig/ch-core/CodeSystem/ech-46-emailcategory"/> | ||
<version value="3.1.0"/> | ||
<name value="ECH46EmailCategory"/> | ||
<title value="eCH-0046 Email Category"/> | ||
<status value="active"/> | ||
<experimental value="false"/> | ||
<date value="2023-03-10"/> | ||
<publisher value="HL7 Switzerland"/> | ||
<contact> | ||
<name value="HL7 Switzerland"/> | ||
<telecom> | ||
<system value="url"/> | ||
<value value="https://www.hl7.ch/"/> | ||
</telecom> | ||
</contact> | ||
<description value="eCH-0046 defines different types for e-mail categories. See https://www.ech.ch/de/ech/ech-0046/5.0 4.3.1 emailCategory" /> | ||
<jurisdiction> | ||
<coding> | ||
<system value="urn:iso:std:iso:3166"/> | ||
<code value="CH"/> | ||
</coding> | ||
</jurisdiction> | ||
<caseSensitive value="true"/> | ||
<content value="complete"/> | ||
<concept> | ||
<code value="1"/> | ||
<display value="private"/> | ||
<designation> | ||
<language value="de-CH" /> | ||
<value value="private Email-Adresse" /> | ||
</designation> | ||
<designation> | ||
<language value="fr-CH" /> | ||
<value value="adresse E-Mail privée" /> | ||
</designation> | ||
</concept> | ||
<concept> | ||
<code value="2"/> | ||
<display value="business"/> | ||
<designation> | ||
<language value="de-CH" /> | ||
<value value="geschäftliche Email-Adresse" /> | ||
</designation> | ||
<designation> | ||
<language value="fr-CH" /> | ||
<value value="adresse E-Mail commerciale" /> | ||
</designation> | ||
</concept> | ||
</CodeSystem> |
Oops, something went wrong.