@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 -------------------------------------------------------------------

<http://resmed.com/fhir/core/Practitioner/resmed-practitioner-example> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "resmed-practitioner-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://resmed.com/fhir/core/StructureDefinition/resmed-practitioner"^^xsd:anyURI ;
       fhir:link <http://resmed.com/fhir/core/StructureDefinition/resmed-practitioner>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Practitioner</b><a name=\"resmed-practitioner-example\"> </a></p><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\">Resource Practitioner &quot;resmed-practitioner-example&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-resmed-practitioner.html\">ResMed Practitioner</a></p></div><p><b>identifier</b>: Provider number: <a href=\"http://terminology.hl7.org/5.0.0/NamingSystem-npi.html\">#</a>9876543210 (use: OFFICIAL), Consumer Application Account Identifier: j.smith (use: OFFICIAL), Person number: 343 (use: OFFICIAL)</p><p><b>name</b>: John Smith </p><p><b>telecom</b>: <a href=\"mailto:j.smith@sleepylabs.com\">j.smith@sleepylabs.com</a></p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "PRN" ]
       ] )
     ] ;
     fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "9876543210" ]
  ] [
     fhir:use [ fhir:v "official" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "CAAI" ]
       ] )
     ] ;
     fhir:value [ fhir:v "j.smith" ]
  ] [
     fhir:use [ fhir:v "official" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "PN" ]
       ] )
     ] ;
     fhir:value [ fhir:v "343" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Smith" ] ;
     fhir:given ( [ fhir:v "John" ] ) ;
     fhir:prefix ( [ fhir:v "Dr" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "j.smith@sleepylabs.com" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

