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.
Observation-Haemoglobin-Example
Example of an Observation indicating the level of haemoglobin in a specimen.
Observation |
id : Observation-Haemoglobin-Example |
status : final |
code |
coding |
system : http://snomed.info/sct |
code : 38082009 |
display : Haemoglobin |
subject |
reference : Patient/Patient-PatrickSammy-Example |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9449307873 |
value |
value : 83 |
unit : g/dl |
system : http://unitsofmeasure.org |
code : g/dL |
effective : 2023-09-03 |
{ "resourceType": "Observation", "id": "Observation-Haemoglobin-Example", "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "38082009", "display": "Haemoglobin" } ] }, "subject": { "reference": "Patient/Patient-PatrickSammy-Example", "identifier": { "system": "https://fhir.nhs.uk/Id/nhs-number", "value": "9449307873" } }, "valueQuantity": { "value": 83, "unit": "g/dl", "system": "http://unitsofmeasure.org", "code": "g/dL" }, "effectiveDateTime": "2023-09-03" }
<Observation xmlns="http://hl7.org/fhir"> <id value="Observation-Haemoglobin-Example" /> <status value="final" /> <code> <coding> <system value="http://snomed.info/sct" /> <code value="38082009" /> <display value="Haemoglobin" /> </coding> </code> <subject> <reference value="Patient/Patient-PatrickSammy-Example" /> <identifier> <system value="https://fhir.nhs.uk/Id/nhs-number" /> <value value="9449307873" /> </identifier> </subject> <effectiveDateTime value="2023-09-03" /> <valueQuantity> <value value="83" /> <unit value="g/dl" /> <system value="http://unitsofmeasure.org" /> <code value="g/dL" /> </valueQuantity> </Observation>