@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/dapl/Observation/de-identified-clinical-result-observation-example> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "de-identified-clinical-result-observation-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-clinical-result-observation"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-clinical-result-observation>
     ] )
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-instant-extension"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-instant-extension>
     ] ;
     fhir:value [
       a fhir:DateTime ;
       fhir:v "2005"^^xsd:gYear
     ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/observation-category>
       ] ;
       fhir:code [ fhir:v "imaging" ] ;
       fhir:display [ fhir:v "Imaging" ]
     ] )
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:19005-8 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "19005-8" ] ;
       fhir:display [ fhir:v "Radiology Imaging study [Impression] (narrative)" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/us/dapl/Patient/de-identified-example> ;
     fhir:reference [ fhir:v "Patient/de-identified-example" ]
  ] ; # 
  fhir:encounter [
     fhir:l <http://hl7.org/fhir/us/dapl/Encounter/de-identified-example> ;
     fhir:reference [ fhir:v "Encounter/de-identified-example" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2005"^^xsd:gYear
  ] ; # 
  fhir:issued [ fhir:v "2005-04-03T15:30:10+01:00"^^xsd:dateTime] ; # 
  fhir:performer ( [
     fhir:l <http://hl7.org/fhir/us/dapl/Practitioner/example> ;
     fhir:reference [ fhir:v "Practitioner/example" ]
  ] ) ; # 
  fhir:value [
     a fhir:String ;
     fhir:v "No acute abnormality"
  ] . # 

<http://hl7.org/fhir/us/dapl/Patient/de-identified-example> a fhir:Us .

<http://hl7.org/fhir/us/dapl/Encounter/de-identified-example> a fhir:Us .

<http://hl7.org/fhir/us/dapl/Practitioner/example> a fhir:Us .

# -------------------------------------------------------------------------------------

