@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://example.org/fhir/trust-ai-transparency/Observation/dr-input-observation> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "dr-input-observation"] ; # 
  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 dr-input-observation</b></p><a name=\"dr-input-observation\"> </a><a name=\"hcdr-input-observation\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:\">C-reactive protein concentration</span></p><p><b>subject</b>: <a href=\"Patient-dr-patient.html\">Anonymous Patient Female, DoB: 1965-06-15</a></p><p><b>effective</b>: 2026-03-10 09:00:00+0000</p><p><b>performer</b>: <a href=\"Organization-dr-organization.html\">Organization Example Diagnostic Center</a></p><p><b>value</b>: 148 mg/L</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:text [ fhir:v "C-reactive protein concentration" ]
  ] ; # 
  fhir:subject [
     fhir:link <http://example.org/fhir/trust-ai-transparency/Patient/dr-patient> ;
     fhir:reference [ fhir:v "Patient/dr-patient" ]
  ] ; # 
  fhir:effective [
     a fhir:dateTime ;
     fhir:v "2026-03-10T09:00:00Z"^^xsd:dateTime
  ] ; # 
  fhir:performer ( [
     fhir:link <http://example.org/fhir/trust-ai-transparency/Organization/dr-organization> ;
     fhir:reference [ fhir:v "Organization/dr-organization" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v "148"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "mg/L" ]
  ] . # 

# -------------------------------------------------------------------------------------

