-
Notifications
You must be signed in to change notification settings - Fork 4
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 #512 from NHSDigital/stu2ballot/HumanLanguageSnippets
human language snippets (STU2)
- Loading branch information
Showing
4 changed files
with
98 additions
and
0 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,22 @@ | ||
<Patient xmlns="http://hl7.org/fhir"> | ||
<id value="UKCore-Patient-Sn-Makaton-Example" /> | ||
<name> | ||
<use value="official" /> | ||
<family value="JONES" /> | ||
<given value="Jason" /> | ||
</name> | ||
<communication> | ||
<language> | ||
<coding> | ||
<system value="urn:ietf:bcp:47" /> | ||
<code value="bfi" /> | ||
<display value="British Sign Language" /> | ||
</coding> | ||
<coding> | ||
<system value="http://snomed.info/sct" /> | ||
<code value="703963007" /> | ||
<display value="Makaton vocabulary" /> | ||
</coding> | ||
</language> | ||
</communication> | ||
</Patient> |
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,51 @@ | ||
<Patient xmlns="http://hl7.org/fhir"> | ||
<id value="UKCore-Patient-Sn-MultipleLanguages-Example" /> | ||
<name> | ||
<use value="official" /> | ||
<family value="JONES" /> | ||
<given value="Jason" /> | ||
</name> | ||
<communication> | ||
<extension url="http://hl7.org/fhir/StructureDefinition/patient-proficiency"> | ||
<extension url="level"> | ||
<valueCoding> | ||
<system value="http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency" /> | ||
<code value="E" /> | ||
<display value="Excellent" /> | ||
</valueCoding> | ||
</extension> | ||
</extension> | ||
<language> | ||
<coding> | ||
<system value="urn:ietf:bcp:47" /> | ||
<code value="en" /> | ||
<display value="English" /> | ||
</coding> | ||
</language> | ||
</communication> | ||
<communication> | ||
<extension url="http://hl7.org/fhir/StructureDefinition/patient-proficiency"> | ||
<extension url="level"> | ||
<valueCoding> | ||
<system value="http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency" /> | ||
<code value="P" /> | ||
<display value="Poor" /> | ||
</valueCoding> | ||
</extension> | ||
<extension url="type"> | ||
<valueCoding> | ||
<system value="http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode" /> | ||
<code value="ESP" /> | ||
<display value="Expressed spoken" /> | ||
</valueCoding> | ||
</extension> | ||
</extension> | ||
<language> | ||
<coding> | ||
<system value="urn:ietf:bcp:47" /> | ||
<code value="fr" /> | ||
<display value="French" /> | ||
</coding> | ||
</language> | ||
</communication> | ||
</Patient> |
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,17 @@ | ||
<Patient xmlns="http://hl7.org/fhir"> | ||
<id value="UKCore-Patient-Sn-SingleLanguage-Example" /> | ||
<name> | ||
<use value="official" /> | ||
<family value="JONES" /> | ||
<given value="Jason" /> | ||
</name> | ||
<communication> | ||
<language> | ||
<coding> | ||
<system value="urn:ietf:bcp:47" /> | ||
<code value="en" /> | ||
<display value="English" /> | ||
</coding> | ||
</language> | ||
</communication> | ||
</Patient> |
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