DRAFT PH Road Safety Implementation Guide
0.1.0 - ci-build Philippines flag

DRAFT PH Road Safety Implementation Guide, published by UP Manila - National Institutes of Health - National Telehealth Center. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/UPM-NTHC/PH-RoadSafetyIG/ and changes regularly. See the Directory of published versions

: Road Safety Task Example - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 a fhir:Task ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "task-road-safety-ex"] ; # 
  fhir:meta [
    ( fhir:profile [ fhir:v "urn://example.com.ph/StructureDefinition/rs-task"^^xsd:anyURI ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Task:</b> Report Form Tracking</p><p><b>Status:</b> Completed (Report Form Received)</p><p><b>Intent:</b> Order</p><p><b>Execution Period:</b> 2025-09-01 to 2025-09-10 (9 days delay)</p><p><b>Sources of Delays:</b></p><ul><li>Late transport of documents</li><li>Technical issues in hospital reporting system</li></ul></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:executionPeriod [
fhir:start [ fhir:v "2025-09-01"^^xsd:date ] ;
fhir:end [ fhir:v "2025-09-10"^^xsd:date ]
  ] ; # 
  fhir:note ( [
fhir:text [ fhir:v "Late transport of documents" ]
  ] [
fhir:text [ fhir:v "Technical issues in hospital reporting system" ]
  ] ) . #