mamaTotofhirIG, published by IntelliSOFT Consulting Ke. 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/IntelliSOFT-Consulting/MamaToTo-FHIR-IG/ and changes regularly. See the Directory of published versions
: Example Practitioner - 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:Practitioner ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "ExamplePractitioner"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://example.org/StructureDefinition/PractitionerProfile"^^xsd:anyURI ;
fhir:link <http://example.org/StructureDefinition/PractitionerProfile> ] )
] ; #
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: Practitioner ExamplePractitioner</b></p><a name=\"ExamplePractitioner\"> </a><a name=\"hcExamplePractitioner\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-PractitionerProfile.html\">PractitionerProfile</a></p></div><p><b>identifier</b>: <code>http://hospital.org/practitioners</code>/PRAC-45678</p><p><b>active</b>: true</p><p><b>name</b>: John Doe </p><p><b>telecom</b>: <a href=\"tel:+1234567890\">+1234567890</a></p><p><b>address</b>: 123 Medical Plaza Nairobi Nairobi County 00100 Kenya </p><p><b>gender</b>: Male</p><p><b>birthDate</b>: 1980-05-15</p><h3>Qualifications</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Identifier</b></td><td><b>Code</b></td><td><b>Period</b></td><td><b>Issuer</b></td></tr><tr><td style=\"display: none\">*</td><td><code>http://medicalboard.org/licenses</code>/MB-789654</td><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v2-0360/2.7 MD}\">Doctor of Medicine</span></td><td>2010-06-01 --> (ongoing)</td><td><a href=\"Organization/example-medical-board\">Organization/example-medical-board</a></td></tr></table></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://hospital.org/practitioners"^^xsd:anyURI ] ;
fhir:value [ fhir:v "PRAC-45678" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:name ( [
fhir:family [ fhir:v "Doe" ] ;
( fhir:given [ fhir:v "John" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+1234567890" ] ;
fhir:use [ fhir:v "work" ]
] ) ; #
fhir:address ( [
( fhir:line [ fhir:v "123 Medical Plaza" ] ) ;
fhir:city [ fhir:v "Nairobi" ] ;
fhir:state [ fhir:v "Nairobi County" ] ;
fhir:postalCode [ fhir:v "00100" ] ;
fhir:country [ fhir:v "Kenya" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1980-05-15"^^xsd:date] ; #
fhir:qualification ( [
( fhir:identifier [
fhir:system [ fhir:v "http://medicalboard.org/licenses"^^xsd:anyURI ] ;
fhir:value [ fhir:v "MB-789654" ] ] ) ;
fhir:code [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0360/2.7"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MD" ] ;
fhir:display [ fhir:v "Doctor of Medicine" ] ] ) ] ;
fhir:period [
fhir:start [ fhir:v "2010-06-01"^^xsd:date ] ] ;
fhir:issuer [
fhir:reference [ fhir:v "Organization/example-medical-board" ] ]
] ) . #