DiagnosticReportStatus
public enum DiagnosticReportStatus: String
The status of the diagnostic report as a whole.
URL: http://hl7.org/fhir/diagnostic-report-status ValueSet: http://hl7.org/fhir/ValueSet/diagnostic-report-status
-
The existence of the report is registered, but there is nothing yet available.
Declaration
Swift
case registered = "registered"
-
This is a partial (e.g. initial, interim or preliminary) report: data in the report may be incomplete or unverified.
Declaration
Swift
case partial = "partial"
-
Verified early results are available, but not all results are final.
Declaration
Swift
case preliminary = "preliminary"
-
The report is complete and verified by an authorized person.
Declaration
Swift
case final = "final"
-
Subsequent to being final, the report has been modified. This includes any change in the results, diagnosis, narrative text, or other content of a report that has been issued.
Declaration
Swift
case amended = "amended"
-
Subsequent to being final, the report has been modified to correct an error in the report or referenced results.
Declaration
Swift
case corrected = "corrected"
-
Subsequent to being final, the report has been modified by adding new content. The existing content is unchanged.
Declaration
Swift
case appended = "appended"
-
The report is unavailable because the measurement was not started or not completed (also sometimes called
aborted
).Declaration
Swift
case cancelled = "cancelled"
-
The report has been withdrawn following a previous final release. This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be
cancelled
rather thanentered-in-error
.)Declaration
Swift
case enteredInError = "entered-in-error"
-
The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for
other
- one of the listed statuses is presumed to apply, it’s just not known which one.Declaration
Swift
case unknown = "unknown"