Genomics Reporting Implementation Guide 3.0.0 - STU3
This page is part of the Genetic Reporting Implementation Guide (v3.0.0: STU3) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> . @prefix loinc: <https://loinc.org/rdf/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix sct: <http://snomed.info/id/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:ServiceRequest ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "servicerequest-hla-a-r4"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: ServiceRequest servicerequest-hla-a-r4</b></p><a name=\"servicerequest-hla-a-r4\"> </a><a name=\"hcservicerequest-hla-a-r4\"> </a><a name=\"servicerequest-hla-a-r4-en-US\"> </a><p><b>identifier</b>: <code>http:/aDonorRegistry.com</code>/1234.5678</p><p><b>status</b>: Completed</p><p><b>intent</b>: Order</p><p><b>category</b>: <span title=\"Codes:{http://snomed.info/sct 108252007}\">Laboratory procedure</span></p><p><b>priority</b>: Routine</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 13298-5}\">HLA-A [Type]</span></p><p><b>subject</b>: Identifier: 001^24680</p><p><b>requester</b>: aDonorRegistry</p><p><b>performer</b>: aTypingLab, Inc</p><p><b>specimen</b>: buccal swab: 123456789</p></div>" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http:/aDonorRegistry.com"^^xsd:anyURI ] ; fhir:value [ fhir:v "1234.5678" ] ] ) ; # fhir:status [ fhir:v "completed"] ; # fhir:intent [ fhir:v "order"] ; # fhir:category ( [ ( fhir:coding [ a sct:108252007 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "108252007" ] ; fhir:display [ fhir:v "Laboratory procedure" ] ] ) ] ) ; # fhir:priority [ fhir:v "routine"] ; # fhir:code [ ( fhir:coding [ a loinc:13298-5 ; fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "13298-5" ] ; fhir:display [ fhir:v "HLA-A [Type]" ] ] ) ] ; # fhir:subject [ fhir:identifier [ fhir:value [ fhir:v "001^24680" ] ] ] ; # fhir:requester [ fhir:type [ fhir:v "Organization"^^xsd:anyURI ] ; fhir:display [ fhir:v "aDonorRegistry" ] ] ; # fhir:performer ( [ fhir:type [ fhir:v "Organization"^^xsd:anyURI ] ; fhir:display [ fhir:v "aTypingLab, Inc" ] ] ) ; # fhir:specimen ( [ fhir:type [ fhir:v "Specimen"^^xsd:anyURI ] ; fhir:display [ fhir:v "buccal swab: 123456789" ] ] ) . #