This page is part of the FHIR Specification (v0.5.0: DSTU 2 Ballot 2). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R3 R2
This resource maintained by the Financial Management Work Group
This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources.
The ProcessRequest resource allows for the specification of an action to be performed on an existing resporce or resources and the provides the additional supporting information to support that action. The actions currently defined are: cancel, poll, reprocess, and status.
Cancel indicates the resource which is to be reversed and provides both supporting information for the reversal and whether the receiving system is permitted to retain a copy of the reversed resource.
The Cancel is the formal request to cease processing an incomplete prior request or to reverse and/or nullify a complete prior request or information submission. When nullify=true then all copies of the original submission are to be purged, although audit logs may be retained. When Nullify=false a copy of the original request may be retained. A ProcessResponse may be craeted or returned to indicate whether the requestion action was accepted and scucessful.
Poll provides supporting information for the poll request. The response to this is a previously undelivered response or a StatusResponse (or other acknowledgement stype resource which may contain errors).
This is a formal request for Payors or systems which require such and/or transports which don't support a 'Get Operation', for the retrieval of pended, held, resources.
A simple Poll request, one which doesn't specify: request, include, exclude or period; would return any pended resource. Specific types of business behaviors may be supported by providing values for the filtering elements, for example:
Reprocess indicates the resource which is to be reprocessed, for example a claim to be readjudicated or a specemin or diagnostic image to be re-examined, and provides both supporting information for the reprocessing and the line items which are to be reprocessed.
This is necessary for the limited supporters who require the ability to formally request the reprocessing of specified service sub-trees from an already processed resource such as a previously adjudicated Claim.
Status indicates the resource for which the processing status is requested and provides supporting information for the status request.
This is a formal request for Payors which require such and/or transports which don't support a 'Get Operation', for the processing status of a previously submitted processing request.
This resource is referenced by CarePlan, ClinicalImpression and PaymentReconciliation
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
ProcessRequest | DomainResource | Process request | ||
action | 1..1 | code | cancel | poll | reprocess | status ActionList (Required) | |
identifier | 0..* | Identifier | Business Identifier | |
ruleset | 0..1 | Coding | Resource version Ruleset (Example) | |
originalRuleset | 0..1 | Coding | Original version Ruleset (Example) | |
created | 0..1 | dateTime | Creation date | |
target | 0..1 | Organization | Target of the request | |
provider | 0..1 | Practitioner | Responsible practitioner | |
organization | 0..1 | Organization | Responsible organization | |
request | 0..1 | Any | Request reference | |
response | 0..1 | Any | Response reference | |
nullify | 0..1 | boolean | Nullify | |
reference | 0..1 | string | Reference number/string | |
item | 0..* | Element | Items to re-adjudicate | |
sequenceLinkId | 1..1 | integer | Service instance | |
include | 0..* | string | Resource type(s) to include | |
exclude | 0..* | string | Resource type(s) to exclude | |
period | 0..1 | Period | Period |
UML Diagram
XML Template
<ProcessRequest xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <action value="[code]"/><!-- 1..1 cancel | poll | reprocess | status --> <identifier><!-- 0..* Identifier Business Identifier --></identifier> <ruleset><!-- 0..1 Coding Resource version --></ruleset> <originalRuleset><!-- 0..1 Coding Original version --></originalRuleset> <created value="[dateTime]"/><!-- 0..1 Creation date --> <target><!-- 0..1 Reference(Organization) Target of the request --></target> <provider><!-- 0..1 Reference(Practitioner) Responsible practitioner --></provider> <organization><!-- 0..1 Reference(Organization) Responsible organization --></organization> <request><!-- 0..1 Reference(Any) Request reference --></request> <response><!-- 0..1 Reference(Any) Response reference --></response> <nullify value="[boolean]"/><!-- 0..1 Nullify --> <reference value="[string]"/><!-- 0..1 Reference number/string --> <item> <!-- 0..* Items to re-adjudicate --> <sequenceLinkId value="[integer]"/><!-- 1..1 Service instance --> </item> <include value="[string]"/><!-- 0..* Resource type(s) to include --> <exclude value="[string]"/><!-- 0..* Resource type(s) to exclude --> <period><!-- 0..1 Period Period --></period> </ProcessRequest>
JSON Template
{ "resourceType" : "ProcessRequest", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "action" : "<code>", // R! cancel | poll | reprocess | status "identifier" : [{ Identifier }], // Business Identifier "ruleset" : { Coding }, // Resource version "originalRuleset" : { Coding }, // Original version "created" : "<dateTime>", // Creation date "target" : { Reference(Organization) }, // Target of the request "provider" : { Reference(Practitioner) }, // Responsible practitioner "organization" : { Reference(Organization) }, // Responsible organization "request" : { Reference(Any) }, // Request reference "response" : { Reference(Any) }, // Response reference "nullify" : <boolean>, // Nullify "reference" : "<string>", // Reference number/string "item" : [{ // Items to re-adjudicate "sequenceLinkId" : <integer> // R! Service instance }], "include" : ["<string>"], // Resource type(s) to include "exclude" : ["<string>"], // Resource type(s) to exclude "period" : { Period } // Period }
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
ProcessRequest | DomainResource | Process request | ||
action | 1..1 | code | cancel | poll | reprocess | status ActionList (Required) | |
identifier | 0..* | Identifier | Business Identifier | |
ruleset | 0..1 | Coding | Resource version Ruleset (Example) | |
originalRuleset | 0..1 | Coding | Original version Ruleset (Example) | |
created | 0..1 | dateTime | Creation date | |
target | 0..1 | Organization | Target of the request | |
provider | 0..1 | Practitioner | Responsible practitioner | |
organization | 0..1 | Organization | Responsible organization | |
request | 0..1 | Any | Request reference | |
response | 0..1 | Any | Response reference | |
nullify | 0..1 | boolean | Nullify | |
reference | 0..1 | string | Reference number/string | |
item | 0..* | Element | Items to re-adjudicate | |
sequenceLinkId | 1..1 | integer | Service instance | |
include | 0..* | string | Resource type(s) to include | |
exclude | 0..* | string | Resource type(s) to exclude | |
period | 0..1 | Period | Period |
XML Template
<ProcessRequest xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <action value="[code]"/><!-- 1..1 cancel | poll | reprocess | status --> <identifier><!-- 0..* Identifier Business Identifier --></identifier> <ruleset><!-- 0..1 Coding Resource version --></ruleset> <originalRuleset><!-- 0..1 Coding Original version --></originalRuleset> <created value="[dateTime]"/><!-- 0..1 Creation date --> <target><!-- 0..1 Reference(Organization) Target of the request --></target> <provider><!-- 0..1 Reference(Practitioner) Responsible practitioner --></provider> <organization><!-- 0..1 Reference(Organization) Responsible organization --></organization> <request><!-- 0..1 Reference(Any) Request reference --></request> <response><!-- 0..1 Reference(Any) Response reference --></response> <nullify value="[boolean]"/><!-- 0..1 Nullify --> <reference value="[string]"/><!-- 0..1 Reference number/string --> <item> <!-- 0..* Items to re-adjudicate --> <sequenceLinkId value="[integer]"/><!-- 1..1 Service instance --> </item> <include value="[string]"/><!-- 0..* Resource type(s) to include --> <exclude value="[string]"/><!-- 0..* Resource type(s) to exclude --> <period><!-- 0..1 Period Period --></period> </ProcessRequest>
JSON Template
{ "resourceType" : "ProcessRequest", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "action" : "<code>", // R! cancel | poll | reprocess | status "identifier" : [{ Identifier }], // Business Identifier "ruleset" : { Coding }, // Resource version "originalRuleset" : { Coding }, // Original version "created" : "<dateTime>", // Creation date "target" : { Reference(Organization) }, // Target of the request "provider" : { Reference(Practitioner) }, // Responsible practitioner "organization" : { Reference(Organization) }, // Responsible organization "request" : { Reference(Any) }, // Request reference "response" : { Reference(Any) }, // Response reference "nullify" : <boolean>, // Nullify "reference" : "<string>", // Reference number/string "item" : [{ // Items to re-adjudicate "sequenceLinkId" : <integer> // R! Service instance }], "include" : ["<string>"], // Resource type(s) to include "exclude" : ["<string>"], // Resource type(s) to exclude "period" : { Period } // Period }
Alternate definitions: Schema/Schematron, Resource Profile (XML, JSON)
Path | Definition | Type | Reference |
---|---|---|---|
ProcessRequest.action | List of allowable action which this resource can request | Required | http://hl7.org/fhir/actionlist |
ProcessRequest.ruleset ProcessRequest.originalRuleset | The static and dynamic model to which contents conform, may be business version or standard and version. | Example | http://hl7.org/fhir/vs/ruleset |
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 |
action | token | The action requested by this resource | ProcessRequest.action |
identifier | token | The business identifier of the ProcessRequest | ProcessRequest.identifier |
organization | reference | The organization who generated this request | ProcessRequest.organization (Organization) |
provider | reference | The provider who renerated this request | ProcessRequest.provider (Practitioner) |