documentreference $docref
Fetch DocumentReference
Description: This operation is used to return all the references to documents related to a patient.
The operation requires a patient id and takes the optional input parameters:
-
start date
-
end date
-
document type
-
on demand
-
profile
and returns a Bundle of type "searchset" containing DocumentReference resources for the patient. If the server has or can create documents that are related to the patient, and that are available for the given user, the server returns the DocumentReference resources needed to support the records. The principle intended use for this operation is to provide a provider or patient with access to their available document information.
This operation is different from a search by patient and type and date range because:
-
It is used to request a server to generate a document based on the specified parameters.
-
If no parameters are specified, the server SHALL return a DocumentReference to the patient's most current summary
-
If the server cannot generate a document based on the specified parameters, the operation will return an empty search bundle.
Unless the client indicates they are only interested in 'on-demand' documents using the on-demand parameter, the server SHOULD return DocumentReference instances for existing documents that meet the request parameters. In this regard, this operation is similar to a FHIR RESTful query.
Comments: - The server is responsible for determining what resources, if any, to return as included resources rather than the client specifying which ones. This frees the client from needing to determine what it could or should ask for. For example, the server may return the referenced document as an included FHIR Binary resource within the return bundle. The server's CapabilityStatement should document this behavior.
-
The document itself can be subsequently retrieved using the link provided in the
DocumentReference.content.attachment.url element. The link could be a FHIR endpoint to a Binary Resource or some other document repository. -
It is assumed that the server has identified and secured the context appropriately, and can either associate the authorization context with a single patient, or determine whether the context has the rights to the nominated patient, if there is one. If there is no nominated patient (e.g. the operation is invoked at the system level) and the context is not associated with a single patient record, then the server should return an error. Specifying the relationship between the context, a user and patient records is outside the scope of this specification
Affects State: true
System: false
Type: true
Instance: false
URL: http://hl7.org/fhir/build/OperationDefinition/DocumentReference-docref
Parameters
- patient [in] 1..1 id — The id of the patient resource located on the server on which this operation is executed. If there is no match, an empty Bundle is returned
- start [in] 0..1 dateTime — The date range relates to care dates, not record currency dates - e.g. all records relating to care provided in a certain date range. If no start date is provided, all documents prior to the end date are in scope. If neither a start date nor an end date is provided, the most recent or current document is in scope. The client SHOULD provide values precise to the second + time offset.
- end [in] 0..1 dateTime — The date range relates to care dates, not record currency dates - e.g. all records relating to care provided in a certain date range. If no end date is provided, all documents subsequent to the start date are in scope. If neither a start date nor an end date is provided, the most recent or current document is in scope. The client SHOULD provide values precise to the second + time offset.
- type [in] 0..1 CodeableConcept — The type relates to document type e.g. C-CDA Clinical Summary of Care (CCD) = LOINC 34133-9: Summary of episode note, and International Patient Summary (IPS) = LOINC 60591-5: Patient summary document. If no type is provided, the summary document, if available, SHALL be in scope, and all other document types MAY be in scope. It is at the server's discretion how to respond if multiple types are provided. The server MAY return documents to any of the specified types. The server's CapabilityStatement should document its behavior and what types it supports
- on-demand [in] 0..1 boolean — This on-demand parameter allows client to dictate whether they are requesting only 'on-demand' or both 'on-demand' and 'stable' documents (or delayed/deferred assembly) that meet the query parameters
- profile [in] 0..* canonical — This parameter allows the client to request documents according to a specific profile using the profile's canonical reference. It is at the server's discretion how to respond if multiple profiles are provided. The server MAY return documents to any of the specified profiles. The server's CapabilityStatement should document its behavior and what profiles it supports.
- return [out] 1..1 Bundle — The bundle type is "searchset"containing DocumentReference resources.