Da Vinci Payer Data exchange Implementation Guide Release 0.1.0

This page is part of the Da Vinci Payer Data Exchange (v0.1.0: STU 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

3-6-16 US Core Organization

When a Health Plan is documenting information about organizations in relation to the Member’s Health History they SHOULD use the US Core Organization resource.

The essential fields to be provided in the US Core Organization resource are:

R4 Hierarchical Name R4 Name Flags Card. Type
Organization Organization I 0..*  
Organization.id id   0..1 id
Organization.identifier identifier SI 1..* Identifier
Organization.identifier.system system S 1..1 uri
Organization.active active ?!S 1..1 boolean
Organization.name name SI 1..1 string
Organization.telecom telecom SI 1..* ContactPoint
Organization.address address SI 1..* Address
Organization.address.line line S 0..* string
Organization.address.city city S 0..1 string
Organization.address.state state S 0..1 string
Organization.address.postalCode postalCode S 0..1 string
Organization.endpoint endpoint S 0..* Reference(Endpoint)

3-6-16-1 Example Organization resource

An example mapping of an Organization resource is shown below:

{
  "resourceType" : "Organization",
  "id" : "saint-luke-w-endpoint",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            

Organization

\n
\n

ID: 393872

\n

Name: Saint Luke's Hospital of Kansas City

\n

NPI: 1063494177

\n

Phone:(816)932-2000

\n

Address:4401 Wornall Rd,, MO, 64111

\n
\n </div>" }, "contained" : [ { "resourceType" : "Endpoint", "id" : "75", "status" : "active", "connectionType" : { "system" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type", "code" : "direct-project" }, "name" : "Dr. Ronald Bone Direct Address", "managingOrganization" : { "reference" : "Organization/example-organization-2" }, "payloadType" : [ { "coding" : [ { "system" : "urn:oid:1.3.6.1.4.1.19376.1.2.3", "code" : "urn:hl7-org:sdwg:ccda-structuredBody:1.1" } ] } ], "payloadMimeType" : [ "text/xml" ], "address" : "mailto:Interoperability@DirectAddress.com" } ], "identifier" : [ { "system" : "http://example.org/fhir/sid/us-npi", "value" : "1063494177" }, { "system" : "http://example.org/fhir/us/argo/sid/us-ein", "value" : "00-0000000" } ], "active" : true, "name" : "Saint Luke's Hospital of Kansas City", "telecom" : [ { "system" : "phone", "value" : "(816)932-2000", "use" : "work" }, { "system" : "other", "value" : "http://www.saintlukeshealthsystem.org/locations/saint-lukes-hospital-kansas-city", "use" : "work" } ], "address" : [ { "text" : "3300 Washtenaw Avenue, Suite 227 Amherst MA 01002", "line" : [ "4401 Wornall Rd," ], "city" : "Amherst", "state" : "MA", "postalCode" : "64111" } ], "endpoint" : [ { "reference" : "#75" } ] }