This page is part of the FHIR Specification (v1.6.0: STU 3 Ballot 4). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R4 R3
An example of a HLA genotyping results report
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- <http://hl7.org/fhir/DiagnosticReport/hla-1> a fhir:DiagnosticReport; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "hla-1"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: hla-1</p><p><b>status</b>: final</p><p><b>code</b>: HLA genotyping results <span>(Details )</span></p><p><b>subject</b>: <a>Molecular Lab Patient ID: HOSP-23456</a></p><p><b>effective</b>: 26/05/2015 3:30:10 PM</p><p><b>issued</b>: 26/05/2015 3:30:10 PM</p><p><b>performer</b>: <a>Molecular Diagnostic Laboratory</a></p><p><b>specimen</b>: <a>Molecular Specimen ID: MLD45-Z4-1234</a></p></div>" ]; fhir:extension [ fhir:index 0; fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/hla-genotyping-resultsGlstring" ]; fhir:extension [ fhir:index 0; fhir:Extension.url [ fhir:value "text" ]; fhir:Extension.valueString [ fhir:value "HLA-A*01:01:01+HLA-A*24:02:01" ] ] ]; fhir:DiagnosticReport.status [ fhir:value "final"]; fhir:DiagnosticReport.code [ fhir:CodeableConcept.text [ fhir:value "HLA genotyping results" ] ]; fhir:DiagnosticReport.subject [ fhir:link <http://hl7.org/fhir/Patient/genetics-example2>; fhir:Reference.reference [ fhir:value "Patient/genetics-example2" ]; fhir:Reference.display [ fhir:value "Molecular Lab Patient ID: HOSP-23456" ] ]; fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2015-05-26T15:30:10+01:00"^^xsd:dateTime]; fhir:DiagnosticReport.issued [ fhir:value "2015-05-26T15:30:10+01:00"^^xsd:dateTime]; fhir:DiagnosticReport.performer [ fhir:index 0; fhir:link <http://hl7.org/fhir/Practitioner/genetics-example2>; fhir:Reference.reference [ fhir:value "Practitioner/genetics-example2" ]; fhir:Reference.display [ fhir:value "Molecular Diagnostic Laboratory" ] ]; fhir:DiagnosticReport.specimen [ fhir:index 0; fhir:link <http://hl7.org/fhir/Specimen/genetics-example2>; fhir:Reference.reference [ fhir:value "Specimen/genetics-example2" ]; fhir:Reference.display [ fhir:value "Molecular Specimen ID: MLD45-Z4-1234" ] ] . <http://hl7.org/fhir/Patient/genetics-example2> a fhir:Patient . <http://hl7.org/fhir/Practitioner/genetics-example2> a fhir:Practitioner . <http://hl7.org/fhir/Specimen/genetics-example2> a fhir:Specimen . # -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.