@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix sct: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:Procedure;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "Routine Appendectomy
"
];
fhir:Procedure.status [ fhir:value "completed"];
fhir:Procedure.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:80146002;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "80146002" ];
fhir:Coding.display [ fhir:value "Appendectomy (Procedure)" ]
];
fhir:CodeableConcept.text [ fhir:value "Appendectomy" ]
];
fhir:Procedure.subject [
fhir:link ;
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Procedure.performedDateTime [ fhir:value "2013-04-05"^^xsd:date];
fhir:Procedure.recorder [
fhir:link ;
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]
];
fhir:Procedure.asserter [
fhir:link ;
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]
];
fhir:Procedure.performer [
fhir:index 0;
fhir:Procedure.performer.actor [
fhir:link ;
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]
]
];
fhir:Procedure.reasonCode [
fhir:index 0;
fhir:CodeableConcept.text [ fhir:value "Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding" ]
];
fhir:Procedure.followUp [
fhir:index 0;
fhir:CodeableConcept.text [ fhir:value "ROS 5 days - 2013-04-10" ]
];
fhir:Procedure.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "Routine Appendectomy. Appendix was inflamed and in retro-caecal position" ]
] .
a fhir:Patient .
a fhir:Practitioner .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI .
# -------------------------------------------------------------------------------------