@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:CatalogEntry; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
[Put rendering here]
" ]; fhir:CatalogEntry.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://example.com/identifier" ]; fhir:Identifier.value [ fhir:value "123" ] ]; fhir:CatalogEntry.type [ fhir:CodeableConcept.text [ fhir:value "Medication" ] ]; fhir:CatalogEntry.orderable [ fhir:value "true"^^xsd:boolean]; fhir:CatalogEntry.referencedItem [ fhir:link ; fhir:Reference.reference [ fhir:value "Medication/123" ] ] . a fhir:Medication . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------