@prefix fhir: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Observation ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-abc-chart"] ; # fhir:meta [ fhir:profile ( [ fhir:v "https://fhir.clinyq.ai/StructureDefinition/onc-abc-chart"^^xsd:anyURI ; fhir:l ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div [ fhir:v "

Generated Narrative: Observation example-abc-chart

Profile: PBS ABC Chart

status: Final

category: Exam

code: ABC Chart

subject: Jane Doe Female, DoB Unknown

performer: Practitioner Nightingale

value: Frustration/Tangible

note:

Aggressive episode managed with de-escalation.

\n

component

code: Antecedent

value: Denied access to garden due to rain.

component

code: Behaviour

value: Shouting and hitting door.

component

code: Consequence

value: Verbal de-escalation, distraction with music.

"^^rdf:XMLLiteral ] ] ; # fhir:status [ fhir:v "final"] ; # fhir:category ( [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ; fhir:l ] ; fhir:code [ fhir:v "exam" ] ] ) ] ) ; # fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes"^^xsd:anyURI ; fhir:l ] ; fhir:code [ fhir:v "abc-chart" ] ] ) ] ; # fhir:subject [ fhir:l ; fhir:reference [ fhir:v "Patient/patient-example-jane" ] ] ; # fhir:performer ( [ fhir:l ; fhir:reference [ fhir:v "Practitioner/practitioner-example" ] ] ) ; # fhir:value [ a fhir:CodeableConcept ; fhir:text [ fhir:v "Frustration/Tangible" ] ] ; # fhir:note ( [ fhir:text [ fhir:v "Aggressive episode managed with de-escalation." ] ] ) ; # fhir:component ( [ fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes"^^xsd:anyURI ; fhir:l ] ; fhir:code [ fhir:v "abc-antecedent" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Denied access to garden due to rain." ] ] [ fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes"^^xsd:anyURI ; fhir:l ] ; fhir:code [ fhir:v "abc-behaviour" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Shouting and hitting door." ] ] [ fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes"^^xsd:anyURI ; fhir:l ] ; fhir:code [ fhir:v "abc-consequence" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Verbal de-escalation, distraction with music." ] ] ) . # # -------------------------------------------------------------------------------------