HL7 PT FHIR Implementation Guide: Example IG Release 1 | STU1, published by HL7 Portugal. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7-pt/community-health-ig/ and changes regularly. See the Directory of published versions
: PatientTCCS - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "PatientTCCS"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://ehr.testing.p5.pt/api/fhir/StructureDefinition/PatientTCCS"^^xsd:anyURI ;
fhir:link <https://ehr.testing.p5.pt/api/fhir/StructureDefinition/PatientTCCS> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient PatientTCCS</b></p><a name=\"PatientTCCS\"> </a><a name=\"hcPatientTCCS\"> </a><a name=\"PatientTCCS-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">John Doe Male, DoB: 2009-02-09 ( https://ehr.testing.p5.pt/api/fhir#12345678)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li><a href=\"tel:+351999999999\">+351999999999</a></li><li><a href=\"mailto:testing@email.com\">testing@email.com</a></li></ul></td></tr></table></div>"
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "https://ehr.testing.p5.pt/api/fhir"^^xsd:anyURI ] ;
fhir:value [ fhir:v "12345678" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Doe" ] ;
( fhir:given [ fhir:v "John" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+351999999999" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "testing@email.com" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "2009-02-09"^^xsd:date] . #