@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 -------------------------------------------------------------------

 a fhir:ImplementationGuide;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "ig"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>Implementation Guide Template</h2><p>The official URL for this implementation guide is: </p><pre>http://hl7.org/fhir/ig</pre></div>"
  ];
  fhir:ImplementationGuide.url [ fhir:value "http://hl7.org/fhir/ig"];
  fhir:ImplementationGuide.name [ fhir:value "Implementation Guide Template"];
  fhir:ImplementationGuide.status [ fhir:value "draft"];
  fhir:ImplementationGuide.experimental [ fhir:value "true"^^xsd:boolean];
  fhir:ImplementationGuide.publisher [ fhir:value "FHIR Project"];
  fhir:ImplementationGuide.definition [
     fhir:ImplementationGuide.definition.package [
       fhir:index 0;
       fhir:ImplementationGuide.definition.package.name [ fhir:value "base" ]     ];
     fhir:ImplementationGuide.definition.page [
       fhir:ImplementationGuide.definition.page.nameUrl [ fhir:value "index.html" ];
       fhir:ImplementationGuide.definition.page.title [ fhir:value "Home Page" ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.