Implementation Guide
23.1.0 - R4 APIs

Publish Box goes here

: General Practitioner Example - TTL Representation

Raw ttl | Download


@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:id [ fhir:v "Example1"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner>     ] [
fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-practitioner-profile"^^xsd:anyURI ;
fhir:link <https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-practitioner-profile>     ] )
  ] ; # 
  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 Example1</b></p><a name=\"Example1\"> </a><a name=\"hcExample1\"> </a><a name=\"Example1-en-US\"> </a><p><b>identifier</b>: Person number/442, National provider identifier/123456789, Tax ID number/2222222222</p><p><b>active</b>: true</p><p><b>name</b>: Harry S. Winston </p><p><b>telecom</b>: ph: 1111111111(Work), ph: 5032332233(Mobile)</p><p><b>address</b>: 10288 SW 43rd Ave Suite 400 Portland OR 97202 USA </p></div>"
  ] ; # 
  fhir:identifier ( [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "PN" ]       ] )     ] ;
fhir:system [ fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/athenaFlex/namingsystem/DOCTORFACILITYID/1000-4-9390042"^^xsd:anyURI ] ;
fhir:value [ fhir:v "442" ]
  ] [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NPI" ]       ] )     ] ;
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456789" ]
  ] [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "TAX" ]       ] )     ] ;
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-tin"^^xsd:anyURI ] ;
fhir:value [ fhir:v "2222222222" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:name ( [
fhir:family [ fhir:v "Winston" ] ;
    ( fhir:given [ fhir:v "Harry" ] [ fhir:v "S." ] ) ;
    ( fhir:prefix [ fhir:v "Dr." ] ) ;
    ( fhir:suffix [ fhir:v "MD" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "1111111111" ] ;
fhir:use [ fhir:v "work" ]
  ] [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "5032332233" ] ;
fhir:use [ fhir:v "mobile" ]
  ] ) ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "10288 SW 43rd Ave" ] [ fhir:v "Suite 400" ] ) ;
fhir:city [ fhir:v "Portland" ] ;
fhir:state [ fhir:v "OR" ] ;
fhir:postalCode [ fhir:v "97202" ] ;
fhir:country [ fhir:v "USA" ]
  ] ) . #