This page is part of the Making EHR Data MOre available for Research and Public Health (MedMorph) Healthcare Surveys Reporting Content IG (v2.0.0-ballot: STU 2 Ballot) based on FHIR (HL7® FHIR® Standard) R4. This version is a pre-release. The current official version is 1.0.0. For a full list of available versions, see the Directory of published versions
: Practitioner 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:Practitioner ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "practitioner-1"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|6.1.0"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|6.1.0> ] )
] ; #
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 practitioner-1</b></p><a name=\"practitioner-1\"> </a><a name=\"hcpractitioner-1\"> </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=\"http://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitioner.html\">US Core Practitioner Profileversion: null6.1.0)</a></p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/6.5.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/9941339100 (use: official, )</p><p><b>active</b>: true</p><p><b>name</b>: Joseph P Nichols (Official)</p><p><b>telecom</b>: ph: 800-277-1993(Mobile), <a href=\"mailto:joseph.shaw@example.com\">joseph.shaw@example.com</a></p><p><b>address</b>: 53 Sunset AveApt 9 Tulsa OK 74126 USA (home)</p><p><b>gender</b>: Male</p><p><b>birthDate</b>: 1963-12-14</p></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
fhir:value [ fhir:v "9941339100" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Nichols" ] ;
( fhir:given [ fhir:v "Joseph" ] [ fhir:v "P" ] ) ;
( fhir:suffix [ fhir:v "MD" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "800-277-1993" ] ;
fhir:use [ fhir:v "mobile" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "joseph.shaw@example.com" ]
] ) ; #
fhir:address ( [
fhir:use [ fhir:v "home" ] ;
( fhir:line [ fhir:v "53 Sunset AveApt 9" ] ) ;
fhir:city [ fhir:v "Tulsa" ] ;
fhir:state [ fhir:v "OK" ] ;
fhir:postalCode [ fhir:v "74126" ] ;
fhir:country [ fhir:v "USA" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1963-12-14"^^xsd:date] . #