@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/CodeSystem/CodeSystemExample> a fhir:CodeSystem ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CodeSystemExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://gematik.de/fhir/isik/StructureDefinition/ISiKCodeSystem" ;
       fhir:index 0 ;
       fhir:link <https://gematik.de/fhir/isik/StructureDefinition/ISiKCodeSystem>
     ]
  ] ;
  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: CodeSystem CodeSystemExample</b></p><a name=\"CodeSystemExample\"> </a><a name=\"hcCodeSystemExample\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ISiKCodeSystem.html\">ISiKCodeSystem</a></p></div><p>This case-sensitive code system <code>http://example.org/fhir/CodeSystem/TestKatalog</code> defines the following code:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">test<a name=\"CodeSystemExample-test\"> </a></td><td>Test</td><td>Dies ist ein Test-Code</td></tr></table></div>"
  ] ;
  fhir:CodeSystem.url [ fhir:value "http://example.org/fhir/CodeSystem/TestKatalog"] ;
  fhir:CodeSystem.version [ fhir:value "6.0.0"] ;
  fhir:CodeSystem.name [ fhir:value "TestKatalog"] ;
  fhir:CodeSystem.status [ fhir:value "active"] ;
  fhir:CodeSystem.experimental [ fhir:value "true"^^xsd:boolean] ;
  fhir:CodeSystem.date [ fhir:value "2026-07-01"^^xsd:date] ;
  fhir:CodeSystem.publisher [ fhir:value "gematik GmbH"] ;
  fhir:CodeSystem.contact [
     fhir:index 0 ;
     fhir:ContactDetail.name [ fhir:value "gematik GmbH" ] ;
     fhir:ContactDetail.telecom [
       fhir:index 0 ;
       fhir:ContactPoint.system [ fhir:value "url" ] ;
       fhir:ContactPoint.value [ fhir:value "https://gematik.de" ]
     ]
  ] ;
  fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean] ;
  fhir:CodeSystem.content [ fhir:value "complete"] ;
  fhir:CodeSystem.concept [
     fhir:index 0 ;
     fhir:CodeSystem.concept.code [ fhir:value "test" ] ;
     fhir:CodeSystem.concept.display [ fhir:value "Test" ] ;
     fhir:CodeSystem.concept.definition [ fhir:value "Dies ist ein Test-Code" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://gematik.de/fhir/isik/CodeSystem/CodeSystemExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

