This page is part of the Bidirectional Services eReferrals (BSeR) (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Source view
@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:Practitioner; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "practitioner-bser-hailey-eight"]; fhir:Resource.meta [ fhir:Meta.versionId [ fhir:value "2" ]; fhir:Meta.lastUpdated [ fhir:value "2020-01-17T23:52:09.000-05:00"^^xsd:dateTime ]; fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/bser/StructureDefinition/BSeR-Practitioner"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/bser/StructureDefinition/BSeR-Practitioner> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n <tr>\n <td style=\"font-wEight: bold\">id</td>\n <td>\n <span title=\"id\">practitioner-bser-hailey-eight</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">meta</td>\n <td>\n <table>\n <tr>\n <td style=\"font-wEight: bold\">versionId</td>\n <td>\n <span title=\"versionId\">6</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">lastUpdated</td>\n <td>\n <span title=\"lastUpdated\">2019-10-05T02:50:13.000-04:00</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">profile</td>\n <td>\n <span title=\"profile\">http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner</span>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">identifier</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <span title=\"system\">\n <a href=\"http://hl7.org/fhir/sid/us-npi\">http://hl7.org/fhir/sid/us-npi</a>\n </span>\n </li>\n <li>\n <span title=\"value\">9941339888</span>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">name</td>\n <td>\n <table>\n <tr>\n <td style=\"font-wEight: bold\">family</td>\n <td>\n <span title=\"family\">Hailey</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">given</td>\n <td>\n <span title=\"given\">Eight</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">suffix</td>\n <td>\n <span title=\"suffix\">M.D.</span>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">telecom</td>\n <td>\n <table>\n <tr>\n <td style=\"font-wEight: bold\">system</td>\n <td>\n <span title=\"system\">email</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">value</td>\n <td>\n <span title=\"value\">hailey.eight@example.com</span>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">address</td>\n <td>\n <table>\n <tr>\n <td style=\"font-wEight: bold\">line</td>\n <td>\n <span title=\"line\">BMass Doctors</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">line</td>\n <td>\n <span title=\"line\">2100 North Ave</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">city</td>\n <td>\n <span title=\"city\">Burlington</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">state</td>\n <td>\n <span title=\"state\">MA</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">postalCode</td>\n <td>\n <span title=\"postalCode\">02368</span>\n </td>\n </tr>\n <tr>\n <td style=\"font-wEight: bold\">country</td>\n <td>\n <span title=\"country\">US</span>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>" ]; fhir:Practitioner.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ]; fhir:Identifier.value [ fhir:value "9941339888" ] ]; fhir:Practitioner.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Hailey" ]; fhir:HumanName.given [ fhir:value "Eight"; fhir:index 0 ]; fhir:HumanName.suffix [ fhir:value "M.D."; fhir:index 0 ] ]; fhir:Practitioner.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "hailey.eight@example.com" ] ]; fhir:Practitioner.address [ fhir:index 0; fhir:Address.line [ fhir:value "BMass Doctors"; fhir:index 0 ], [ fhir:value "2100 North Ave"; fhir:index 1 ]; fhir:Address.city [ fhir:value "Burlington" ]; fhir:Address.state [ fhir:value "MA" ]; fhir:Address.postalCode [ fhir:value "02368" ]; fhir:Address.country [ fhir:value "US" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.