Da Vinci - Coverage Requirements Discovery
2.2.0-ballot - United States of America flag

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

Binary: Example CRD Service Request with appointment-book

{
  "hook" : "appointment-book",
  "hookInstance" : "urn:uuid:bfdb5c14-deb2-4dc9-b175-39925484de2c",
  "fhirServer" : "http://example.org/some-payer/fhir/crd",
  "fhirAuthorization" : {
    "accessToken" : "some-opaque-fhir-access-token",
    "tokenType" : "Bearer",
    "expiresIn" : 300,
    "scope" : "user/Patient.read user/Observation.read",
    "subject" : "cds-service4",
    "patient" : "123"
  },
  "context" : {
    "userId" : "Practitioner/ABC",
    "patientId" : "123",
    "encounterId" : "987",
    "appointments" : {
      "resourceType" : "Bundle",
      "type" : "collection",
      "entry" : [
        {
          "fullUrl" : "http://example.org/someEHR/fhir/Appointment/example",
          "resource" : {
            "resourceType" : "Appointment",
            "id" : "example",
            "text" : {
              "status" : "generated",
              "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Request for transfer of Liver Pathology biopsy report for Amy V. Baxter from Dr. Smith to Good Health Clinic<br/>Requested by Dr. Jones, June 10, 2016</div>"
            },
            "status" : "proposed",
            "serviceType" : [
              {
                "coding" : [
                  {
                    "system" : "http://terminology.hl7.org/CodeSystem/service-type",
                    "code" : "24"
                  }
                ]
              }
            ],
            "participant" : [
              {
                "actor" : {
                  "reference" : "http://example.org/fhir/Patient/123"
                },
                "status" : "accepted"
              },
              {
                "actor" : {
                  "reference" : "http://example.org/fhir/PractitionerRole/987"
                },
                "status" : "tentative"
              }
            ]
          }
        }
      ]
    }
  }
}