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/niccoreyes/ph-core/ and changes regularly. See the Directory of published versions
: example-allergy - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:AllergyIntolerance ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example-allergy"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Juan Dela Cruz has a high criticality, active allergy to Benethamine penicillin.</div>"^^rdf:XMLLiteral ]
] ; #
fhir:clinicalStatus [
( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical> ] ;
fhir:code [ fhir:v "active" ] ;
fhir:display [ fhir:v "Active" ] ] )
] ; #
fhir:criticality [ fhir:v "high"] ; #
fhir:code [
( fhir:coding [
a sct:294494002 ;
fhir:system [
fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
fhir:l <http://snomed.info/sct> ] ;
fhir:code [ fhir:v "294494002" ] ;
fhir:display [ fhir:v "Benethamine penicillin allergy" ] ] )
] ; #
fhir:patient [
fhir:l <urn:uuid:64eb2d39-8da6-4c1d-b4c7-a6d3e916cd5b> ;
fhir:reference [ fhir:v "urn:uuid:64eb2d39-8da6-4c1d-b4c7-a6d3e916cd5b" ]
] . #