@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.eu/fhir/hdr/DeviceUseStatement/example-deviceusestatement-hip-euhdr> a fhir:DeviceUseStatement ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-deviceusestatement-hip-euhdr"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.eu/fhir/hdr/StructureDefinition/deviceUseStatement-eu-hdr" ;
       fhir:index 0 ;
       fhir:link <http://hl7.eu/fhir/hdr/StructureDefinition/deviceUseStatement-eu-hdr>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><strong>Device:</strong> Total Hip Replacement Prosthesis</p><p><strong>Patient:</strong> Fiona XXX_Swart</p><p><strong>Status:</strong> Active</p><p><strong>Timing:</strong> since 2023-09-04</p><p><strong>Body Site:</strong> Hip joint structure, left</p></div>"
  ] ;
  fhir:DeviceUseStatement.status [ fhir:value "active"] ;
  fhir:DeviceUseStatement.subject [
     fhir:link <http://hl7.eu/fhir/hdr/Patient/patient-swart> ;
     fhir:Reference.reference [ fhir:value "Patient/patient-swart" ] ;
     fhir:Reference.display [ fhir:value "Fiona XXX_Swart" ]
  ] ;
  fhir:DeviceUseStatement.timingPeriod [
     fhir:Period.start [ fhir:value "2023-09-04"^^xsd:date ]
  ] ;
  fhir:DeviceUseStatement.device [
     fhir:link <http://hl7.eu/fhir/hdr/Device/hip-prosthesis-001> ;
     fhir:Reference.reference [ fhir:value "Device/hip-prosthesis-001" ] ;
     fhir:Reference.display [ fhir:value "Total Hip Replacement Prosthesis" ]
  ] ;
  fhir:DeviceUseStatement.bodySite [
     fhir:Element.extension [
       fhir:index 0 ;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/5.0/StructureDefinition/extension-DeviceUsage.bodySite" ] ;
       fhir:Extension.valueReference [
         fhir:link <http://hl7.eu/fhir/hdr/BodyStructure/bodystructure-left-hip> ;
         fhir:Reference.reference [ fhir:value "BodyStructure/bodystructure-left-hip" ]
       ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.eu/fhir/hdr/DeviceUseStatement/example-deviceusestatement-hip-euhdr.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

