Da Vinci Payer Data Exchange
2.2.0 - STU 2.2 United States of America flag

Da Vinci Payer Data Exchange, published by HL7 International / Financial Management. This guide is not an authorized publication; it is the continuous build for version 2.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/davinci-epdx/ and changes regularly. See the Directory of published versions

: Practitioner Provider Example 2 - Dr. Jones - TTL Representation

Page standards status: Informative

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 -------------------------------------------------------------------

<http://hl7.org/fhir/Practitioner/provider-002> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "provider-002"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2024-12-16T10:00:00Z"^^xsd:dateTime ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Dr. Mary Jones, MD</p></div>"
  ] ;
  fhir:Practitioner.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
     fhir:Identifier.value [ fhir:value "1497758544" ]
  ] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "Jones" ] ;
     fhir:HumanName.given [
       fhir:value "Mary" ;
       fhir:index 0
     ] ;
     fhir:HumanName.prefix [
       fhir:value "Dr." ;
       fhir:index 0
     ] ;
     fhir:HumanName.suffix [
       fhir:value "MD" ;
       fhir:index 0
     ]
  ] .

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

<http://hl7.org/fhir/Practitioner/provider-002.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Practitioner/provider-002.ttl> .