@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 -------------------------------------------------------------------

<https://gematik.de/fhir/isik/Medication/ExampleISiKMedikament3> a fhir:Medication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleISiKMedikament3"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament" ;
       fhir:index 0 ;
       fhir:link <https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "additional" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Medikament codiert (mit PZN)</div>"
  ] ;
  fhir:Medication.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://fhir.de/CodeSystem/ifa/pzn" ] ;
       fhir:Coding.code [ fhir:value "07265233" ] ;
       fhir:Coding.display [ fhir:value "Pantozol® 40 mg 98 St." ]
     ]
  ] ;
  fhir:Medication.status [ fhir:value "active"] .

# - ontology header ------------------------------------------------------------

<https://gematik.de/fhir/isik/Medication/ExampleISiKMedikament3.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

