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

: Organization Provider Example 1 - 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/Organization/provider-org-001> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "provider-org-001"] ;
  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>Example Provider Organization</p></div>"
  ] ;
  fhir:Organization.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
     fhir:Identifier.value [ fhir:value "1982947230" ]
  ] ;
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Organization.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/organization-type" ] ;
       fhir:Coding.code [ fhir:value "prov" ] ;
       fhir:Coding.display [ fhir:value "Healthcare Provider" ]
     ]
  ] ;
  fhir:Organization.name [ fhir:value "Example Provider Organization"] ;
  fhir:Organization.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "555-123-4567" ] ;
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] ;
  fhir:Organization.address [
     fhir:index 0 ;
     fhir:Address.line [
       fhir:value "100 Medical Center Drive" ;
       fhir:index 0
     ] ;
     fhir:Address.city [ fhir:value "Anytown" ] ;
     fhir:Address.state [ fhir:value "MA" ] ;
     fhir:Address.postalCode [ fhir:value "02101" ]
  ] .

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

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