Notice
- Important: This guidance is under active development by NHS England and content may be added or updated on a regular basis.
- This Implementation Guide is currently in Draft and SHOULD NOT be used for development or active implementation without express direction from the NHS England Genomics Unit.
Condition-HearingLoss-Example
Example of a Condition resource for hearing loss with note.
Condition |
id : Condition-HearingLoss-Example |
clinicalStatus |
coding |
system : http://terminology.hl7.org/CodeSystem/condition-clinical |
code : active |
display : Active |
code |
coding |
system : http://snomed.info/sct |
code : 95820000 |
display : Bilateral hearing loss |
subject |
reference : Patient/Patient-MeirLieberman-Example |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9449307873 |
note |
text : hearing loss since childhood (example) |
{ "resourceType": "Condition", "id": "Condition-HearingLoss-Example", "clinicalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "active", "display": "Active" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "95820000", "display": "Bilateral hearing loss" } ] }, "subject": { "reference": "Patient/Patient-MeirLieberman-Example", "identifier": { "system": "https://fhir.nhs.uk/Id/nhs-number", "value": "9449307873" } }, "note": [ { "text": "hearing loss since childhood (example)" } ] }
<Condition xmlns="http://hl7.org/fhir"> <id value="Condition-HearingLoss-Example" /> <clinicalStatus> <coding> <system value="http://terminology.hl7.org/CodeSystem/condition-clinical" /> <code value="active" /> <display value="Active" /> </coding> </clinicalStatus> <code> <coding> <system value="http://snomed.info/sct" /> <code value="95820000" /> <display value="Bilateral hearing loss" /> </coding> </code> <subject> <reference value="Patient/Patient-MeirLieberman-Example" /> <identifier> <system value="https://fhir.nhs.uk/Id/nhs-number" /> <value value="9449307873" /> </identifier> </subject> <note> <text value="hearing loss since childhood (example)" /> </note> </Condition>