@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:BodyStructure ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "tumour-spleen"] ; # Example adapted from FHIR R4 tumor fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org.au/fhir/core/StructureDefinition/au-core-bodystructure"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: BodyStructure

Resource BodyStructure "tumour-spleen"

Profile: AU Core BodyStructure

identifier: id: 12345

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

location: Spleen (SNOMED CT#78961009)

description: 7 cm maximum diameter

Images

-ContentTypeUrl
*application/dicomhttp://imaging.acme.com/wado/server?requestType=WADO&wado_details

patient: Patient/wang-li " WANG"

" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http://example.org/bodystructure/identifiers"^^xsd:anyURI ] ; fhir:value [ fhir:v "12345" ] ] ) ; # fhir:morphology [ fhir:coding ( [ a sct:4147007 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "4147007" ] ; fhir:display [ fhir:v "Mass (morphologic abnormality)" ] ] ) ; fhir:text [ fhir:v "Splenic mass" ] ] ; # fhir:location [ fhir:coding ( [ a sct:78961009 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "78961009" ] ] ) ; fhir:text [ fhir:v "Spleen" ] ] ; # fhir:description [ fhir:v "7 cm maximum diameter"] ; # fhir:image ( [ fhir:contentType [ fhir:v "application/dicom" ] ; # WADO example using a fictitious url fhir:url [ fhir:v "http://imaging.acme.com/wado/server?requestType=WADO&wado_details"^^xsd:anyURI ] ] ) ; # fhir:patient [ fhir:link ; fhir:reference [ fhir:v "Patient/wang-li" ] ] . # # -------------------------------------------------------------------------------------