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

Generated Narrative: Observation example-urinalysis

Profile: Urinalysis

status: Final

category: Exam

code: Urinalysis Panel

subject: Jane Doe Female, DoB Unknown

performer: Practitioner Nightingale

value: Suggestive of UTI

component

code: Leukocytes

value: ++

component

code: Nitrites

value: Positive

component

code: Blood

value: Negative

component

code: pH

value: 6 {pH}

"^^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 "urinalysis-panel" ] ] ) ] ; # 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 "Suggestive of UTI" ] ; # 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 "ua-leukocytes" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "++" ] ] [ 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 "ua-nitrites" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Positive" ] ] [ 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 "ua-blood" ] ] ) ] ; fhir:value [ a fhir:String ; fhir:v "Negative" ] ] [ 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 "ua-ph" ] ] ) ] ; fhir:value [ a fhir:Quantity ; fhir:value [ fhir:v "6"^^xsd:decimal ] ; fhir:unit [ fhir:v "{pH}" ] ] ] ) . # # -------------------------------------------------------------------------------------