Da Vinci - Member Attribution (ATR) List
2.0.0-ballot - STU 2.0.0 US

This page is part of the Risk Based Contracts Member Attribution List FHIR IG (v2.0.0-ballot: STU2 Release 1 Ballot 1) based on FHIR R4. The current version which supercedes this 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 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 "1"]; # 
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "3" ];
     fhir:Meta.lastUpdated [ fhir:value "2019-06-06T03:04:12.348-04:00"^^xsd:dateTime ]
  ]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Joseph Nichols</div>"
  ]; # 
  fhir:Practitioner.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ];
     fhir:Identifier.value [ fhir:value "9941339108" ]
  ]; # 
  fhir:Practitioner.active [ fhir:value "true"^^xsd:boolean]; # 
  fhir:Practitioner.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "Nichols" ];
     fhir:HumanName.given [
       fhir:value "Joseph";
       fhir:index 0     ], [
       fhir:value "P";
       fhir:index 1     ];
     fhir:HumanName.suffix [
       fhir:value "MD";
       fhir:index 0     ]
  ]; # 
  fhir:Practitioner.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "800-277-1993" ];
     fhir:ContactPoint.use [ fhir:value "mobile" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "joseph.shaw@example.com" ]
  ]; # 
  fhir:Practitioner.address [
     fhir:index 0;
     fhir:Address.use [ fhir:value "home" ];
     fhir:Address.line [
       fhir:value "53 Sunset AveApt 9";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Tulsa" ];
     fhir:Address.state [ fhir:value "OK" ];
     fhir:Address.postalCode [ fhir:value "74126" ];
     fhir:Address.country [ fhir:value "USA" ]
  ]; # 
  fhir:Practitioner.gender [ fhir:value "male"]; # 
  fhir:Practitioner.birthDate [ fhir:value "1963-12-14"^^xsd:date]. # 

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.