@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://nshr-uat.sha.go.ke/fhir/Observation/CTCAEAdverseEventObservationExample> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "CTCAEAdverseEventObservationExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-ctcae-adverse-event-observation"^^xsd:anyURI ;
       fhir:l <https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-ctcae-adverse-event-observation>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>CTCAE Grade 2 nausea recorded on cycle 1 day 3 post AC chemotherapy; dose not modified</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-ctcae-attribution-extension"^^xsd:anyURI ;
       fhir:l <https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-ctcae-attribution-extension>
     ] ;
     fhir:value [
       a fhir:Code ;
       fhir:v "PROBABLE"
     ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/observation-category>
       ] ;
       fhir:code [ fhir:v "exam" ] ;
       fhir:display [ fhir:v "Exam" ]
     ] )
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "https://nshr-uat.sha.go.ke/fhir/CodeSystem/ctcae-terms-cs"^^xsd:anyURI ;
         fhir:l <https://nshr-uat.sha.go.ke/fhir/CodeSystem/ctcae-terms-cs>
       ] ;
       fhir:code [ fhir:v "NAUSEA" ] ;
       fhir:display [ fhir:v "Nausea" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:encounter [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Encounter/example-encounter> ;
     fhir:reference [ fhir:v "Encounter/example-encounter" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2026-01-18"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Practitioner/example-practitioner> ;
     fhir:reference [ fhir:v "Practitioner/example-practitioner" ]
  ] ) ; # 
  fhir:value [
     a fhir:Integer ;
     fhir:v 2
  ] . # 

# -------------------------------------------------------------------------------------

