Da Vinci Clinical Data Exchange (CDex) Implementation Guide
0.2.0 - ballot

This page is part of the Da Vinci Clinical Documentation Exchange (v0.2.0: STU1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.1.0. For a full list of available versions, see the Directory of published versions

: Scenario 3 Task Example - JSON Representation

Raw json | Download


{
  "resourceType" : "Task",
  "id" : "cdex-example3-query-requested",
  "meta" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-name",
        "valueString" : "Scenario 3 Task Example"
      },
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-description",
        "valueMarkdown" : "Task to seek a patient's latest history and physical exam notes."
      }
    ],
    "profile" : [
      "http://hl7.org/fhir/us/davinci-cdex/StructureDefinition/cdex-task-data-request"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>status</b>: requested</p><p><b>intent</b>: order</p><p><b>code</b>: <span title=\"Codes: {http://hl7.org/fhir/us/davinci-hrex/CodeSystem/hrex-temp data-request}\">data request task</span></p><p><b>for</b>: <a href=\"http://example.org/fhir/Patient/cdex-example-patient\">http://example.org/fhir/Patient/cdex-example-patient</a></p><p><b>authoredOn</b>: Oct 27, 2020 6:05:34 PM</p><p><b>lastModified</b>: Oct 27, 2020 6:05:34 PM</p><p><b>requester</b>: <a href=\"http://example.org/fhir/Organization/cdex-example-payer\">http://example.org/fhir/Organization/cdex-example-payer</a></p><p><b>owner</b>: <a href=\"http://example.org/fhir/Organization/cdex-example-payer\">http://example.org/fhir/Organization/cdex-example-payer</a></p><p><b>reasonCode</b>: <span title=\"Codes: \">To improve care coordination</span></p><h3>Inputs</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td><td><b>Value[x]</b></td></tr><tr><td>*</td><td><span title=\"Codes: {http://hl7.org/fhir/us/davinci-hrex/CodeSystem/hrex-temp data-code}\">data code input</span></td><td><span title=\"Codes: {http://loinc.org 34117-2}\">History and Physical Notes</span></td></tr></table></div>"
  },
  "status" : "requested",
  "intent" : "order",
  "code" : {
    "coding" : [
      {
        "system" : "http://hl7.org/fhir/us/davinci-hrex/CodeSystem/hrex-temp",
        "code" : "data-request"
      }
    ]
  },
  "for" : {
    "reference" : "http://example.org/fhir/Patient/cdex-example-patient"
  },
  "authoredOn" : "2020-10-27T11:05:34-07:00",
  "lastModified" : "2020-10-27T11:05:34-07:00",
  "requester" : {
    "reference" : "http://example.org/fhir/Organization/cdex-example-payer"
  },
  "owner" : {
    "reference" : "http://example.org/fhir/Organization/cdex-example-payer"
  },
  "reasonCode" : {
    "text" : "To improve care coordination"
  },
  "input" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/us/davinci-hrex/CodeSystem/hrex-temp",
            "code" : "data-code"
          }
        ]
      },
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://loinc.org",
            "code" : "34117-2"
          }
        ],
        "text" : "History and Physical Notes"
      }
    }
  ]
}