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.
Specimen-MichealJonesBlood-Minimal
Example of a Specimen resource with the minimal information populated.
Specimen |
id : Specimen-MichaelJonesBlood-Example |
accessionIdentifier |
system : https://www.christie.nhs.uk/path |
value : Spec123456 |
status : available |
type |
coding |
system : http://snomed.info/sct |
code : 87612001 |
display : Blood (substance) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
request |
identifier |
system : https://www.christie.nhs.uk/ehr |
value : LabOrder123456 |
collection |
collected : 2022-07-11T09:00:00Z |
quantity |
system : http://unitsofmeasure.org |
code : mL |
value : 2.5 |
{ "resourceType": "Specimen", "id": "Specimen-MichaelJonesBlood-Example", "accessionIdentifier": { "system": "https://www.christie.nhs.uk/path", "value": "Spec123456" }, "status": "available", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "87612001", "display": "Blood (substance)" } ] }, "subject": { "identifier": { "system": "https://fhir.nhs.uk/Id/nhs-number", "value": "9999999999" } }, "request": [ { "identifier": { "system": "https://www.christie.nhs.uk/ehr", "value": "LabOrder123456" } } ], "collection": { "collectedDateTime": "2022-07-11T09:00:00Z", "quantity": { "system": "http://unitsofmeasure.org", "code": "mL", "value": 2.5 } } }
<Specimen xmlns="http://hl7.org/fhir"> <id value="Specimen-MichaelJonesBlood-Example" /> <accessionIdentifier> <system value="https://www.christie.nhs.uk/path" /> <value value="Spec123456" /> </accessionIdentifier> <status value="available" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="87612001" /> <display value="Blood (substance)" /> </coding> </type> <subject> <identifier> <system value="https://fhir.nhs.uk/Id/nhs-number" /> <value value="9999999999" /> </identifier> </subject> <request> <identifier> <system value="https://www.christie.nhs.uk/ehr" /> <value value="LabOrder123456" /> </identifier> </request> <collection> <collectedDateTime value="2022-07-11T09:00:00Z" /> <quantity> <value value="2.5" /> <system value="http://unitsofmeasure.org" /> <code value="mL" /> </quantity> </collection> </Specimen>