This page is part of the FHIR Specification (v0.4.0: DSTU 2 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
This resource maintained by the Orders and Observations Work Group
A record of a request for a diagnostic investigation service to be performed.
A Diagnostic Order is a record of a request for a set of diagnostic investigations to be performed. The investigation will lead to a Diagnostic Report that summarizes the outcome of the investigation, and includes any useful data and/or images that are relevant to the treatment/management of the subject.
The principal intention of the Diagnostic Order is to support ordering diagnostic investigations on patients (which includes non-human patients in veterinary medicine). However in many contexts, healthcare related processes include performing diagnostic investigations on groups of subjects, devices involved in the provision of healthcare, and even environmental locations such as ducts, bodies of water, etc. The Diagnostic Order supports all these usages.
The general work flow that this resource facilitates is that a clinical system creates a diagnostic order. The diagnostic order is then exchanged, perhaps via intermediaries, with a system that represents a diagnostic service that can perform the investigation as a request to do so. The diagnostic service will update the request as the work is performed, and then finally issue a report that references the requests that it fulfills.
Note that the Diagnostic Order itself is not a request to perform the investigation - it is just a record of the fact that a request was made. To actually request that a diagnostic procedure be performed, additional workflow beyond simply the existence of a Diagnostic Order is required. This can be achieved by using an Order resource, with the Diagnostic Order referenced from the Order.details, or by using the Diagnostic Order resource in the context of an messaging or service workflow where the request is explicit or implicit.
This resource is referenced by CarePlan, CarePlan2, ClinicalAssessment, DiagnosticReport and ImagingStudy
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
DiagnosticOrder | DomainResource | A request for a diagnostic service | ||
subject | 1..1 | Patient | Group | Location | Device | Who and/or what test is about | |
orderer | 0..1 | Practitioner | Who ordered the test | |
identifier | 0..* | Identifier | Identifiers assigned to this order | |
encounter | 0..1 | Encounter | The encounter that this diagnostic order is associated with | |
clinicalNotes | 0..1 | string | Explanation/Justification for test | |
supportingInformation | 0..* | Observation | Condition | DocumentReference | Additional clinical information | |
specimen | 0..* | Specimen | If the whole order relates to specific specimens | |
status | 0..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
priority | 0..1 | code | routine | urgent | stat | asap DiagnosticOrderPriority (Required) | |
event | 0..* | Element | A list of events of interest in the lifecycle | |
status | 1..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
description | 0..1 | CodeableConcept | More information about the event and its context DiagnosticOrderEventDescription (Example) | |
dateTime | 1..1 | dateTime | The date at which the event happened | |
actor | 0..1 | Practitioner | Device | Who recorded or did this | |
item | 0..* | Element | The items the orderer requested | |
code | 1..1 | CodeableConcept | Code to indicate the item (test or panel) being ordered DiagnosticRequests (Incomplete) | |
specimen | 0..* | Specimen | If this item relates to specific specimens | |
bodySite[x] | Location of requested test (if applicable) BodySite (Example) | |||
bodySiteCodeableConcept | 0..1 | CodeableConcept | ||
bodySiteReference | 0..1 | BodySite | ||
status | 0..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
event | 0..* | see event | Events specific to this item |
UML Diagram
XML Template
<DiagnosticOrder xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <subject><!-- 1..1 Reference(Patient|Group|Location|Device) Who and/or what test is about --></subject> <orderer><!-- 0..1 Reference(Practitioner) Who ordered the test --></orderer> <identifier><!-- 0..* Identifier Identifiers assigned to this order --></identifier> <encounter><!-- 0..1 Reference(Encounter) The encounter that this diagnostic order is associated with --></encounter> <clinicalNotes value="[string]"/><!-- 0..1 Explanation/Justification for test --> <supportingInformation><!-- 0..* Reference(Observation|Condition| DocumentReference) Additional clinical information --></supportingInformation> <specimen><!-- 0..* Reference(Specimen) If the whole order relates to specific specimens --></specimen> <status value="[code]"/><!-- 0..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <priority value="[code]"/><!-- 0..1 routine | urgent | stat | asap --> <event> <!-- 0..* A list of events of interest in the lifecycle --> <status value="[code]"/><!-- 1..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <description><!-- 0..1 CodeableConcept More information about the event and its context --></description> <dateTime value="[dateTime]"/><!-- 1..1 The date at which the event happened --> <actor><!-- 0..1 Reference(Practitioner|Device) Who recorded or did this --></actor> </event> <item> <!-- 0..* The items the orderer requested --> <code><!-- 1..1 CodeableConcept Code to indicate the item (test or panel) being ordered --></code> <specimen><!-- 0..* Reference(Specimen) If this item relates to specific specimens --></specimen> <bodySite[x]><!-- 0..1 CodeableConcept|Reference(BodySite) Location of requested test (if applicable) --></bodySite[x]> <status value="[code]"/><!-- 0..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <event><!-- 0..* Content as for DiagnosticOrder.event Events specific to this item --></event> </item> </DiagnosticOrder>
JSON Template
{ "resourceType" : "DiagnosticOrder", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "subject" : { Reference(Patient|Group|Location|Device) }, // R! Who and/or what test is about "orderer" : { Reference(Practitioner) }, // Who ordered the test "identifier" : [{ Identifier }], // Identifiers assigned to this order "encounter" : { Reference(Encounter) }, // The encounter that this diagnostic order is associated with "clinicalNotes" : "<string>", // Explanation/Justification for test "supportingInformation" : [{ Reference(Observation|Condition| DocumentReference) }], // Additional clinical information "specimen" : [{ Reference(Specimen) }], // If the whole order relates to specific specimens "status" : "<code>", // proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "priority" : "<code>", // routine | urgent | stat | asap "event" : [{ // A list of events of interest in the lifecycle "status" : "<code>", // R! proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "description" : { CodeableConcept }, // More information about the event and its context "dateTime" : "<dateTime>", // R! The date at which the event happened "actor" : { Reference(Practitioner|Device) } // Who recorded or did this }], "item" : [{ // The items the orderer requested "code" : { CodeableConcept }, // R! Code to indicate the item (test or panel) being ordered "specimen" : [{ Reference(Specimen) }], // If this item relates to specific specimens // bodySite[x]: Location of requested test (if applicable). One of these 2: "bodySiteCodeableConcept" : { CodeableConcept }, "bodySiteReference" : { Reference(BodySite) }, "status" : "<code>", // proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "event" : [{ Content as for DiagnosticOrder.event }] // Events specific to this item }] }
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
DiagnosticOrder | DomainResource | A request for a diagnostic service | ||
subject | 1..1 | Patient | Group | Location | Device | Who and/or what test is about | |
orderer | 0..1 | Practitioner | Who ordered the test | |
identifier | 0..* | Identifier | Identifiers assigned to this order | |
encounter | 0..1 | Encounter | The encounter that this diagnostic order is associated with | |
clinicalNotes | 0..1 | string | Explanation/Justification for test | |
supportingInformation | 0..* | Observation | Condition | DocumentReference | Additional clinical information | |
specimen | 0..* | Specimen | If the whole order relates to specific specimens | |
status | 0..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
priority | 0..1 | code | routine | urgent | stat | asap DiagnosticOrderPriority (Required) | |
event | 0..* | Element | A list of events of interest in the lifecycle | |
status | 1..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
description | 0..1 | CodeableConcept | More information about the event and its context DiagnosticOrderEventDescription (Example) | |
dateTime | 1..1 | dateTime | The date at which the event happened | |
actor | 0..1 | Practitioner | Device | Who recorded or did this | |
item | 0..* | Element | The items the orderer requested | |
code | 1..1 | CodeableConcept | Code to indicate the item (test or panel) being ordered DiagnosticRequests (Incomplete) | |
specimen | 0..* | Specimen | If this item relates to specific specimens | |
bodySite[x] | Location of requested test (if applicable) BodySite (Example) | |||
bodySiteCodeableConcept | 0..1 | CodeableConcept | ||
bodySiteReference | 0..1 | BodySite | ||
status | 0..1 | code | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed DiagnosticOrderStatus (Required) | |
event | 0..* | see event | Events specific to this item |
XML Template
<DiagnosticOrder xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <subject><!-- 1..1 Reference(Patient|Group|Location|Device) Who and/or what test is about --></subject> <orderer><!-- 0..1 Reference(Practitioner) Who ordered the test --></orderer> <identifier><!-- 0..* Identifier Identifiers assigned to this order --></identifier> <encounter><!-- 0..1 Reference(Encounter) The encounter that this diagnostic order is associated with --></encounter> <clinicalNotes value="[string]"/><!-- 0..1 Explanation/Justification for test --> <supportingInformation><!-- 0..* Reference(Observation|Condition| DocumentReference) Additional clinical information --></supportingInformation> <specimen><!-- 0..* Reference(Specimen) If the whole order relates to specific specimens --></specimen> <status value="[code]"/><!-- 0..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <priority value="[code]"/><!-- 0..1 routine | urgent | stat | asap --> <event> <!-- 0..* A list of events of interest in the lifecycle --> <status value="[code]"/><!-- 1..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <description><!-- 0..1 CodeableConcept More information about the event and its context --></description> <dateTime value="[dateTime]"/><!-- 1..1 The date at which the event happened --> <actor><!-- 0..1 Reference(Practitioner|Device) Who recorded or did this --></actor> </event> <item> <!-- 0..* The items the orderer requested --> <code><!-- 1..1 CodeableConcept Code to indicate the item (test or panel) being ordered --></code> <specimen><!-- 0..* Reference(Specimen) If this item relates to specific specimens --></specimen> <bodySite[x]><!-- 0..1 CodeableConcept|Reference(BodySite) Location of requested test (if applicable) --></bodySite[x]> <status value="[code]"/><!-- 0..1 proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed --> <event><!-- 0..* Content as for DiagnosticOrder.event Events specific to this item --></event> </item> </DiagnosticOrder>
JSON Template
{ "resourceType" : "DiagnosticOrder", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "subject" : { Reference(Patient|Group|Location|Device) }, // R! Who and/or what test is about "orderer" : { Reference(Practitioner) }, // Who ordered the test "identifier" : [{ Identifier }], // Identifiers assigned to this order "encounter" : { Reference(Encounter) }, // The encounter that this diagnostic order is associated with "clinicalNotes" : "<string>", // Explanation/Justification for test "supportingInformation" : [{ Reference(Observation|Condition| DocumentReference) }], // Additional clinical information "specimen" : [{ Reference(Specimen) }], // If the whole order relates to specific specimens "status" : "<code>", // proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "priority" : "<code>", // routine | urgent | stat | asap "event" : [{ // A list of events of interest in the lifecycle "status" : "<code>", // R! proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "description" : { CodeableConcept }, // More information about the event and its context "dateTime" : "<dateTime>", // R! The date at which the event happened "actor" : { Reference(Practitioner|Device) } // Who recorded or did this }], "item" : [{ // The items the orderer requested "code" : { CodeableConcept }, // R! Code to indicate the item (test or panel) being ordered "specimen" : [{ Reference(Specimen) }], // If this item relates to specific specimens // bodySite[x]: Location of requested test (if applicable). One of these 2: "bodySiteCodeableConcept" : { CodeableConcept }, "bodySiteReference" : { Reference(BodySite) }, "status" : "<code>", // proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed "event" : [{ Content as for DiagnosticOrder.event }] // Events specific to this item }] }
Alternate definitions: Schema/Schematron, Resource Profile (XML, JSON), Questionnaire
Path | Definition | Type | Reference |
---|---|---|---|
DiagnosticOrder.status DiagnosticOrder.event.status DiagnosticOrder.item.status | The status of a diagnostic order | Fixed | http://hl7.org/fhir/diagnostic-order-status |
DiagnosticOrder.priority | The clinical priority of a diagnostic order | Fixed | http://hl7.org/fhir/diagnostic-order-priority |
DiagnosticOrder.event.description | Additional information about an event that occurred to a diagnostic order - e.g. if the status remained unchanged | Example | http://hl7.org/fhir/vs/diagnostic-order-event |
DiagnosticOrder.item.code | Codes for tests/services that can be performed by diagnostic services | Incomplete | http://hl7.org/fhir/vs/diagnostic-requests |
DiagnosticOrder.item.bodySite[x] | Codes describing anatomical locations. May include laterality | Example | http://hl7.org/fhir/vs/body-site |
Search parameters for this resource. The common parameters also apply. See Searching for more information about searching in REST, messaging, and services.
Name | Type | Description | Paths |
actor | reference | Who recorded or did this | DiagnosticOrder.event.actor, DiagnosticOrder.item.event.actor (Device, Practitioner) |
bodysite | token | Location of requested test (if applicable) | DiagnosticOrder.item.bodySite[x] |
code | token | Code to indicate the item (test or panel) being ordered | DiagnosticOrder.item.code |
encounter | reference | The encounter that this diagnostic order is associated with | DiagnosticOrder.encounter (Encounter) |
event-date | date | The date at which the event happened | DiagnosticOrder.event.dateTime |
event-status | token | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed | DiagnosticOrder.event.status |
event-status-date | composite | A combination of past-status and date | |
identifier | token | Identifiers assigned to this order | DiagnosticOrder.identifier |
item-date | date | The date at which the event happened | DiagnosticOrder.item.event.dateTime |
item-past-status | token | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed | DiagnosticOrder.item.event.status |
item-status | token | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed | DiagnosticOrder.item.status |
item-status-date | composite | A combination of item-past-status and item-date | |
orderer | reference | Who ordered the test | DiagnosticOrder.orderer (Practitioner) |
patient | reference | Who and/or what test is about | DiagnosticOrder.subject (Patient) |
specimen | reference | If the whole order relates to specific specimens | DiagnosticOrder.specimen, DiagnosticOrder.item.specimen (Specimen) |
status | token | proposed | planned | requested | received | accepted | in-progress | review | completed | suspended | rejected | failed | DiagnosticOrder.status |
subject | reference | Who and/or what test is about | DiagnosticOrder.subject (Device, Location, Patient, Group) |