DICOM® SR to FHIR Resource Mapping IG
1.0.0 - STU1 Ballot International flag

DICOM® SR to FHIR Resource Mapping IG, published by HL7 International / Imaging Integration. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/dicom-sr/ and changes regularly. See the Directory of published versions

: Example-ServiceRequest

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/ServiceRequest/measurement-report-service-request> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "measurement-report-service-request"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xml:lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\"><pre>\n{\n  \"00080050\": { \"vr\": \"SH\" , \"Value\": \"ACSN-235813\" },\n  \"00080051\": { \"vr\": \"SQ\",  \"Value\": [ {\n        \"00400031\": { \"vr\": \"UT\", \"Value\": [ \"Test Hospital\" ] },\n        \"00400032\": { \"vr\": \"UT\", \"Value\": [ \"http://test-hospital.org/acsn\" ] },\n        \"00400033\": { \"vr\": \"CS\", \"Value\": [ \"URI\" ] }\n      } ] }\n}\n  </pre></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "ACSN" ] ;
         fhir:display [ fhir:v "Accession ID" ]
       ] )
     ] ;
     fhir:system [ fhir:v "http://test-hospital.org/acsn"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "ACSN-235813" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/Patient/measurement-report-patient> ;
     fhir:reference [ fhir:v "Patient/measurement-report-patient" ]
  ] . # 

<http://hl7.org/fhir/Patient/measurement-report-patient> a fhir:Patient .