@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 -------------------------------------------------------------------

<http://smart.who.int/cxca/Observation/example-observation-hpv-positive-ltfu37> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-observation-hpv-positive-ltfu37"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation example-observation-hpv-positive-ltfu37</b></p><a name=\"example-observation-hpv-positive-ltfu37\"> </a><a name=\"hcexample-observation-hpv-positive-ltfu37\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://smart.who.int/cxca/CodeSystem/CXCA.D DE3}\">HPV high-risk DNA test</span></p><p><b>subject</b>: <a href=\"Patient-example-mng-woman-37-ltfu.html\">Anonymous Patient Female, DoB: 1989-03-15</a></p><p><b>effective</b>: 2026-03-12</p><p><b>value</b>: <span title=\"Codes:{http://smart.who.int/cxca/CodeSystem/CXCA.D DE8}\">HPV high-risk positive</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://smart.who.int/cxca/CodeSystem/CXCA.D"^^xsd:anyURI ;
         fhir:l <http://smart.who.int/cxca/CodeSystem/CXCA.D>
       ] ;
       fhir:code [ fhir:v "DE3" ] ;
       fhir:display [ fhir:v "HPV high-risk DNA test" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <http://smart.who.int/cxca/Patient/example-mng-woman-37-ltfu> ;
     fhir:reference [ fhir:v "Patient/example-mng-woman-37-ltfu" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2026-03-12"^^xsd:date
  ] ; # 
  fhir:value [
     a fhir:CodeableConcept ;
     fhir:coding ( [
       fhir:system [
         fhir:v "http://smart.who.int/cxca/CodeSystem/CXCA.D"^^xsd:anyURI ;
         fhir:l <http://smart.who.int/cxca/CodeSystem/CXCA.D>
       ] ;
       fhir:code [ fhir:v "DE8" ] ;
       fhir:display [ fhir:v "HPV high-risk positive" ]
     ] )
  ] . # 

# -------------------------------------------------------------------------------------

