@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://prostatecancerspec.org/Encounter/CoreNeedleBiopsyEncounter> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CoreNeedleBiopsyEncounter"] ;
  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: Encounter CoreNeedleBiopsyEncounter</b></p><a name=\"CoreNeedleBiopsyEncounter\"> </a><a name=\"hcCoreNeedleBiopsyEncounter\"> </a><p><b>identifier</b>: <code>http://example.hospital.de/encounters</code>/E_24_001</p><p><b>status</b>: Finished</p><p><b>class</b>: [not stated]: IMB (IMB)</p><p><b>subject</b>: <a href=\"Patient-Patient1.html\">Hans Mueller  Male, DoB: 1955-08-15 ( http://example.hospital.de/patient-ids#PAT-2024-001)</a></p></div>"
  ] ;
  fhir:Encounter.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://example.hospital.de/encounters" ] ;
     fhir:Identifier.value [ fhir:value "E_24_001" ]
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.code [ fhir:value "IMB" ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <http://prostatecancerspec.org/Patient/Patient1> ;
     fhir:Reference.reference [ fhir:value "Patient/Patient1" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://prostatecancerspec.org/Encounter/CoreNeedleBiopsyEncounter.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

