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

Generated Narrative

Resource "tumor"

identifier: id: 12345

morphology: Splenic mass (SNOMED CT#4147007 "Mass (morphologic abnormality)")

location: Spleen (SNOMED CT#78961009 "Splenic structure (body structure)")

description: 7 cm maximum diameter

patient: Patient/example "Peter CHALMERS"

" ]; fhir:BodyStructure.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://goodhealth.org/bodystructure/identifiers" ]; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:BodyStructure.morphology [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:4147007; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "4147007" ]; fhir:Coding.display [ fhir:value "Mass (morphologic abnormality)" ] ]; fhir:CodeableConcept.text [ fhir:value "Splenic mass" ] ]; fhir:BodyStructure.location [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:78961009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "78961009" ]; fhir:Coding.display [ fhir:value "Splenic structure (body structure)" ] ]; fhir:CodeableConcept.text [ fhir:value "Spleen" ] ]; fhir:BodyStructure.description [ fhir:value "7 cm maximum diameter"]; fhir:BodyStructure.image [ fhir:index 0; fhir:Attachment.contentType [ fhir:value "application/dicom" ]; fhir:Attachment.url [ fhir:value "http://imaging.acme.com/wado/server?requestType=WADO&wado_details" ] ]; fhir:BodyStructure.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------