Draft PH Core Implementation Guide
0.2.0 - ci-build Philippines flag

Draft PH Core Implementation Guide, published by UP Manila National TeleHealth Center. This guide is not an authorized publication; it is the continuous build for version 0.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/UP-Manila-SILab/ph-core/ and changes regularly. See the Directory of published versions

: observation-based-on-service-example - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------

 a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "observation-based-on-service-example"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://doh.gov.ph/fhir/ph-core/StructureDefinition/ph-core-observation"^^xsd:anyURI ;
fhir:l <http://doh.gov.ph/fhir/ph-core/StructureDefinition/ph-core-observation>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Hemoglobin A1c: 6.2% (Normal) for Juan Dela Cruz based on diabetes monitoring request.</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:basedOn ( [
fhir:l fhir:ServiceRequest/servicerequest-single-example ;
fhir:reference [ fhir:v "ServiceRequest/servicerequest-single-example" ]
  ] ) ; # 
  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 "laboratory" ] ;
fhir:display [ fhir:v "Laboratory" ]     ] )
  ] ) ; # 
  fhir:code [
    ( fhir:coding [
a loinc:4548-4 ;
fhir:system [
fhir:v "http://loinc.org"^^xsd:anyURI ;
fhir:l <http://loinc.org>       ] ;
fhir:code [ fhir:v "4548-4" ] ;
fhir:display [ fhir:v "Hemoglobin A1c/Hemoglobin.total in Blood" ]     ] )
  ] ; # 
  fhir:subject [
fhir:l fhir:Patient/patient-single-example ;
fhir:reference [ fhir:v "Patient/patient-single-example" ]
  ] ; # 
  fhir:effective [
a fhir:DateTime ;
fhir:v "2024-03-10T10:00:00Z"^^xsd:dateTime
  ] ; # 
  fhir:performer ( [
fhir:l fhir:Organization/organization-single-example ;
fhir:reference [ fhir:v "Organization/organization-single-example" ]
  ] ) ; # 
  fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v 6.2 ] ;
fhir:unit [ fhir:v "%" ] ;
fhir:system [
fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
fhir:l <http://unitsofmeasure.org>     ] ;
fhir:code [ fhir:v "%" ]
  ] ; # 
  fhir:interpretation ( [
    ( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation>       ] ;
fhir:code [ fhir:v "N" ] ;
fhir:display [ fhir:v "Normal" ]     ] )
  ] ) . #