@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/RadiotherapyDoseObservationExample> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "RadiotherapyDoseObservationExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-radiotherapy-dose-observation"^^xsd:anyURI ;
       fhir:l <https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-radiotherapy-dose-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>End-of-treatment dose summary: 50 Gy total dose, 25 fractions × 2 Gy, PTV whole breast</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-rt-target-volume-extension"^^xsd:anyURI ;
       fhir:l <https://nshr-uat.sha.go.ke/fhir/StructureDefinition/nccp-rt-target-volume-extension>
     ] ;
     fhir:value [
       a fhir:Code ;
       fhir:v "PTV"
     ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs"^^xsd:anyURI ;
         fhir:l <https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs>
       ] ;
       fhir:code [ fhir:v "SHA-RT-ADJUVANT" ] ;
       fhir:display [ fhir:v "SHA: Radiotherapy — Adjuvant" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:focus ( [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Condition/example-condition> ;
     fhir:reference [ fhir:v "Condition/example-condition" ]
  ] ) ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2026-03-14"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:l <https://nshr-uat.sha.go.ke/fhir/Practitioner/example-radiation-therapist> ;
     fhir:reference [ fhir:v "Practitioner/example-radiation-therapist" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v "50"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "Gy" ] ;
     fhir:system [
       fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
       fhir:l <http://unitsofmeasure.org>
     ] ;
     fhir:code [ fhir:v "Gy" ]
  ] ; # 
  fhir:component ( [
     fhir:code [
       fhir:coding ( [
         fhir:system [
           fhir:v "https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs"^^xsd:anyURI ;
           fhir:l <https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs>
         ] ;
         fhir:code [ fhir:v "SHA-RT-DOSE-PER-FRACTION" ] ;
         fhir:display [ fhir:v "SHA: RT Dose Per Fraction" ]
       ] )
     ] ;
     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "2"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "Gy" ] ;
       fhir:system [
         fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
         fhir:l <http://unitsofmeasure.org>
       ] ;
       fhir:code [ fhir:v "Gy" ]
     ]
  ] [
     fhir:code [
       fhir:coding ( [
         fhir:system [
           fhir:v "https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs"^^xsd:anyURI ;
           fhir:l <https://nshr-uat.sha.go.ke/fhir/CodeSystem/sha-interventions-cs>
         ] ;
         fhir:code [ fhir:v "SHA-RT-TOTAL-FRACTIONS" ] ;
         fhir:display [ fhir:v "SHA: RT Total Fractions Delivered" ]
       ] )
     ] ;
     fhir:value [
       a fhir:Integer ;
       fhir:v 25
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

