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

Generated Narrative: Observation example-seizure-record

status: Final

category: Exam

code: Seizure Record

subject: Jane Doe Female, DoB Unknown

performer: Practitioner Nightingale

value: Tonic-clonic seizure lasting 2 mins

component

code: Seizure Type

value: Tonic-Clonic

component

code: Seizure Duration

value: 2 min

component

code: Recovery Phase

value: Sleepy for 30 mins post-ictal

"^^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 "seizure-record" ] ] ) ] ; # 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:String ; fhir:v "Tonic-clonic seizure lasting 2 mins" ] ; # 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 "seizure-type" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Tonic-Clonic" ] ] [ 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 "seizure-duration" ] ] ) ] ; fhir:value [ a fhir:Quantity ; fhir:value [ fhir:v "2"^^xsd:decimal ] ; fhir:unit [ fhir:v "min" ] ] ] [ 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 "seizure-recovery" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Sleepy for 30 mins post-ictal" ] ] ) . # # -------------------------------------------------------------------------------------