@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Substance; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative

Resource "example"

identifier: id: 1463

status: active

category: Allergen (Substance Category Codes#allergen)

code: apitoxin (Honey Bee Venom) ()

" ]; fhir:Substance.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://acme.org/identifiers/substances" ]; fhir:Identifier.value [ fhir:value "1463" ] ]; fhir:Substance.status [ fhir:value "active"]; fhir:Substance.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/substance-category" ]; fhir:Coding.code [ fhir:value "allergen" ]; fhir:Coding.display [ fhir:value "Allergen" ] ] ]; fhir:Substance.code [ fhir:CodeableConcept.text [ fhir:value "apitoxin (Honey Bee Venom)" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------