US Core Implementation Guide
10.0.0-ballot - STU 10 Ballot United States of America flag

US Core Implementation Guide, published by HL7 International / Cross-Group Projects. This guide is not an authorized publication; it is the continuous build for version 10.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/US-Core/ and changes regularly. See the Directory of published versions

: Chest Xray Example - TTL Representation

Page standards status: Informative

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Media/chest-xray> a fhir:Media ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "chest-xray"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<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>"
  ] ;
  fhir:Media.status [ fhir:value "completed"] ;
  fhir:Media.type [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/media-type" ] ;
       fhir:Coding.code [ fhir:value "image" ] ;
       fhir:Coding.display [ fhir:value "Image" ]
     ]
  ] ;
  fhir:Media.modality [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:399208008 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.version [ fhir:value "http://snomed.info/sct/731000124108" ] ;
       fhir:Coding.code [ fhir:value "399208008" ] ;
       fhir:Coding.display [ fhir:value "Plain X-ray of chest (procedure)" ]
     ]
  ] ;
  fhir:Media.subject [
     fhir:link <http://hl7.org/fhir/Patient/example> ;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ] ;
  fhir:Media.createdDateTime [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime] ;
  fhir:Media.issued [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime] ;
  fhir:Media.content [
     fhir:Element.id [ fhir:value "a1" ] ;
     fhir:Attachment.contentType [ fhir:value "image/jpeg" ] ;
     fhir:Attachment.url [ fhir:value "http://example.org/fhir/Binary/A12345" ] ;
     fhir:Attachment.creation [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime ]
  ] .

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Media/chest-xray.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Media/chest-xray.ttl> .