DiagnosticReport - FHIR Resource (dstu2)
This DiagnosticReport Resource uses the
FHIR API standard for access and structure.
Validate an DiagnosticReport FHIR Resource (dstu2)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
category | false | CodeableConcept | # Service category
|
code | false | CodeableConcept | # Name/Code for this diagnostic report
|
codedDiagnosis | true | CodeableConcept | # Codes for the conclusion
|
conclusion | false | string | # Clinical Interpretation of test results
|
effectiveDateTime | false | dateTime | # "effectiveDateTime" : "<dateTime>",
|
effectivePeriod | false | Period | # "effectivePeriod" : { Period },
|
encounter | false | Reference | # Health care event when test ordered
|
identifier | true | Identifier | # Id for external references to this report
|
image | true | Data Type | # Key images associated with this report
|
imagingStudy | true | Reference | # Reference to full details of imaging associated with the diagnostic report
|
issued | false | instant | # DateTime this version was released
|
performer | false | Reference | # Responsible Diagnostic Service
|
presentedForm | true | Attachment | # Entire report as issued
|
request | true | Reference | # What was requested
|
result | true | Reference | # Observations - simple, or complex nested groups
|
specimen | true | Reference | # Specimens this report is based on
|
status | false | code | # registered | partial | final | corrected | appended | cancelled | entered-in-error
|
subject | false | Reference | # The subject of the report, usually, but not always, the patient
|
DiagnosticReport Structure
{
"resourceType" : "DiagnosticReport",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Id for external references to this report
"status" : "<code>", // R! registered | partial | final | corrected | appended | cancelled | entered-in-error
"category" : { CodeableConcept }, // Service category
"code" : { CodeableConcept }, // R! Name/Code for this diagnostic report
"subject" : { Reference(Patient|Group|Device|Location) }, // R! The subject of the report, usually, but not always, the patient
"encounter" : { Reference(Encounter) }, // Health care event when test ordered
// effective[x]: Clinically Relevant time/time-period for report. One of these 2:
"effectiveDateTime" : "<dateTime>",
"effectivePeriod" : { Period },
"issued" : "<instant>", // R! DateTime this version was released
"performer" : { Reference(Practitioner|Organization) }, // R! Responsible Diagnostic Service
"request" : [{ Reference(DiagnosticOrder|ProcedureRequest|ReferralRequest) }], // What was requested
"specimen" : [{ Reference(Specimen) }], // Specimens this report is based on
"result" : [{ Reference(Observation) }], // Observations - simple, or complex nested groups
"imagingStudy" : [{ Reference(ImagingStudy|ImagingObjectSelection) }], // Reference to full details of imaging associated with the diagnostic report
"image" : [{ // Key images associated with this report
"comment" : "<string>", // Comment about the image (e.g. explanation)
"link" : { Reference(Media) } // R! Reference to the image source
}],
"conclusion" : "<string>", // Clinical Interpretation of test results
"codedDiagnosis" : [{ CodeableConcept }], // Codes for the conclusion
"presentedForm" : [{ Attachment }] // Entire report as issued
}
DiagnosticReport Search Parameters
The following search parameters can be used to query DiagnosticReport resources. Just submit them like so:
https://api.1up.health/fhir/dstu2/DiagnosticReport?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
category | text | category |
code | text | code |
date | date | effective[x] |
diagnosis | text | codedDiagnosis |
encounter | reference | encounter |
identifier | text | identifier |
image | reference | image.link |
issued | date | issued |
patient | reference | subject |
performer | reference | performer |
request | reference | request |
result | reference | result |
specimen | reference | specimen |
status | text | status |
subject | reference | subject |