@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 -------------------------------------------------------------------

<http://hl7.org/fhir/uv/genomics-reporting/ServiceRequest/servicerequest-hla-a-r4> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "servicerequest-hla-a-r4"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<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><p><b>identifier</b>: <code>http://example.org/donor-registry</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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/donor-registry"^^xsd:anyURI ;
       fhir:l <http://example.org/donor-registry>
     ] ;
     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:l <http://snomed.info/sct>
       ] ;
       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:l <http://loinc.org>
       ] ;
       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:l fhir:Organization
     ] ;
     fhir:display [ fhir:v "aDonorRegistry" ]
  ] ; # 
  fhir:performer ( [
     fhir:type [
       fhir:v "Organization"^^xsd:anyURI ;
       fhir:l fhir:Organization
     ] ;
     fhir:display [ fhir:v "aTypingLab, Inc" ]
  ] ) ; # 
  fhir:specimen ( [
     fhir:type [
       fhir:v "Specimen"^^xsd:anyURI ;
       fhir:l fhir:Specimen
     ] ;
     fhir:display [ fhir:v "buccal swab: 123456789" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

