@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/core/Media/chest-xray> a fhir:Media ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "chest-xray"] ; # 
  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: Media chest-xray</b></p><a name=\"chest-xray\"> </a><a name=\"hcchest-xray\"> </a><p><b>status</b>: Completed</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/media-type image}\">Image</span></p><p><b>modality</b>: <span title=\"Codes:{http://snomed.info/sct 399208008}\">Plain X-ray of chest (procedure)</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Amy V. Baxter  (no stated gender), DoB: 1987-02-20 ( Medical Record Number: 1032702 (use: usual, ))</a></p><p><b>created</b>: 2019-02-04 19:43:30+0000</p><p><b>issued</b>: 2019-02-04 19:43:30+0000</p><blockquote><p><b>content</b></p><blockquote><p><b>id</b></p>a1</blockquote><p><b>contentType</b>: image/jpeg</p><p><b>url</b>: <a href=\"http://example.org/fhir/Binary/A12345\">http://example.org/fhir/Binary/A12345</a></p><p><b>creation</b>: 2019-02-04 19:43:30+0000</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:type [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/media-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/media-type>
       ] ;
       fhir:code [ fhir:v "image" ] ;
       fhir:display [ fhir:v "Image" ]
     ] )
  ] ; # 
  fhir:modality [
     fhir:coding ( [
       a sct:399208008 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:version [ fhir:v "http://snomed.info/sct/731000124108" ] ;
       fhir:code [ fhir:v "399208008" ] ;
       fhir:display [ fhir:v "Plain X-ray of chest (procedure)" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/us/core/Patient/example> ;
     fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:created [
     a fhir:DateTime ;
     fhir:v "2019-02-04T19:43:30.000Z"^^xsd:dateTime
  ] ; # 
  fhir:issued [ fhir:v "2019-02-04T19:43:30.000Z"^^xsd:dateTime] ; # 
  fhir:content [
     fhir:id [ fhir:v "a1" ] ;
     fhir:contentType [ fhir:v "image/jpeg" ] ;
     fhir:url [
       fhir:v "http://example.org/fhir/Binary/A12345"^^xsd:anyURI ;
       fhir:l <http://example.org/fhir/Binary/A12345>
     ] ;
     fhir:creation [ fhir:v "2019-02-04T19:43:30.000Z"^^xsd:dateTime ]
  ] . # 

<http://hl7.org/fhir/us/core/Patient/example> a fhir:Us .

# -------------------------------------------------------------------------------------

