This page is part of the FHIR Implementation Guide for ABDM (v6.5.0: Release) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions
@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:PractitionerRole ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example-01"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/PractitionerRole"^^xsd:anyURI ;
fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/PractitionerRole> ] )
] ; #
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: PractitionerRole example-01</b></p><a name=\"example-01\"> </a><a name=\"hcexample-01\"> </a><a name=\"example-01-hi-IN\"> </a><p><b>identifier</b>: Employee number/23</p><p><b>active</b>: true</p><p><b>period</b>: 2012-01-01 --> 2012-03-31</p><p><b>practitioner</b>: <a href=\"Practitioner-example-01.html\">Dr DEF</a></p><p><b>organization</b>: <a href=\"Organization-example-01.html\">Organization XYZ Lab Pvt.Ltd.</a></p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 85733003}\">General pathologist</span></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 408443003}\">General medical practice</span></p><p><b>telecom</b>: ph: (03) 5555 6473(Work), <a href=\"mailto:def.southern@example.org\">def.southern@example.org</a></p><blockquote><p><b>availableTime</b></p><p><b>daysOfWeek</b>: Monday, Tuesday, Wednesday</p><p><b>availableStartTime</b>: 09:00:00</p><p><b>availableEndTime</b>: 16:30:00</p></blockquote><blockquote><p><b>availableTime</b></p><p><b>daysOfWeek</b>: Thursday, Friday</p><p><b>availableStartTime</b>: 09:00:00</p><p><b>availableEndTime</b>: 12:00:00</p></blockquote><h3>NotAvailables</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Description</b></td><td><b>During</b></td></tr><tr><td style=\"display: none\">*</td><td>DEF will be on extended leave during Nov 2020</td><td>2020-11-01 --> 2020-11-20</td></tr></table><p><b>availabilityExceptions</b>: Adam is generally unavailable on public holidays</p></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:type [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "EI" ] ;
fhir:display [ fhir:v "Employee number" ] ] ) ] ;
fhir:system [ fhir:v "http://www.ndhm.in/practitioners"^^xsd:anyURI ] ;
fhir:value [ fhir:v "23" ]
] ) ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; #
fhir:period [
fhir:start [ fhir:v "2012-01-01"^^xsd:date ] ;
fhir:end [ fhir:v "2012-03-31"^^xsd:date ]
] ; #
fhir:practitioner [
fhir:reference [ fhir:v "Practitioner/example-01" ] ;
fhir:display [ fhir:v "Dr DEF" ]
] ; #
fhir:organization [
fhir:reference [ fhir:v "Organization/example-01" ]
] ; #
fhir:code ( [
( fhir:coding [
a sct:85733003 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "85733003" ] ;
fhir:display [ fhir:v "General pathologist" ] ] )
] ) ; #
fhir:specialty ( [
( fhir:coding [
a sct:408443003 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "408443003" ] ;
fhir:display [ fhir:v "General medical practice" ] ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "(03) 5555 6473" ] ;
fhir:use [ fhir:v "work" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "def.southern@example.org" ] ;
fhir:use [ fhir:v "work" ]
] ) ; #
fhir:availableTime ( [
( fhir:daysOfWeek [ fhir:v "mon" ] [ fhir:v "tue" ] [ fhir:v "wed" ] ) ;
fhir:availableStartTime [ fhir:v "09:00:00"^^xsd:time ] ;
fhir:availableEndTime [ fhir:v "16:30:00"^^xsd:time ]
] [
( fhir:daysOfWeek [ fhir:v "thu" ] [ fhir:v "fri" ] ) ;
fhir:availableStartTime [ fhir:v "09:00:00"^^xsd:time ] ;
fhir:availableEndTime [ fhir:v "12:00:00"^^xsd:time ]
] ) ; #
fhir:notAvailable ( [
fhir:description [ fhir:v "DEF will be on extended leave during Nov 2020" ] ;
fhir:during [
fhir:start [ fhir:v "2020-11-01"^^xsd:date ] ;
fhir:end [ fhir:v "2020-11-20"^^xsd:date ] ]
] ) ; #
fhir:availabilityExceptions [ fhir:v "Adam is generally unavailable on public holidays"] . #
IG © 2024+ National Resource Center for EHR Standards. Package ndhm.in#6.5.0 based on FHIR 4.0.1. Generated 2025-05-08
Links: Table of Contents |
QA Report
| Version History | Feedback Form |