DiagnosticReport

DiagnosticReport returns information about a clinical finding.

Query

Endpoint

GET <serveraddress>/fhir/DiagnosticReport

Parameter

Parameter Query example Description
id <endpoint>/<id> the technical id of the clinical finding
identifier <endpoint>?identifier=<identifier> the external identifier of the clinical finding

Searching identifers with a specific system or the internal identifier are not supported.

The id and identifier of a clinical finding is identical to the corresponding order.

Example

{
"resourceType": "DiagnosticReport",
"id": "diagnosticreport-example",
{
"resourceType": "Practitioner",
"id": "practitioner-example",
"name": [
{
"family": "Meier",
"given": [
"Hans"
]
}
]
}
],
{
"system": "http://www.acme.com/fhir/NamingSystem/servicerequest-identifier",
"value": "order-extern-123"
},
{
"system": "http://www.qualitype.de/samples/fhir/NamingSystem/servicerequest-identifier",
"value": "order-intern-123"
}
],
"basedOn": [
{
"reference": "ServiceRequest/servicerequest-example",
"system": "http://www.acme.com/fhir/NamingSystem/servicerequest-identifier",
"value": "order-extern-123"
}
}
],
"status": "final",
"code": {
"coding": [
{
"code": "GOAL-1",
"system": "http://www.qualitype.de/samples/fhir/CodeSystem/goals",
"display": "Goal 1"
}
]
},
"subject": {
"reference": "Patient/patient-example",
"system": "http://www.acme.com/fhir/NamingSystem/patient-identifier",
"value": "patient-extern-123"
}
},
"effectiveDateTime": "2023-07-01T12:00:00+00:00",
"issued": "2023-07-01T12:00:00+00:00",
{
"reference": "#practitioner-example"
}
],
{
"reference": "Specimen/specimen-example",
"system": "http://www.acme.com/fhir/NamingSystem/specimen-identifier",
"value": "sample-extern-123"
}
}
],
"result": [
{
"reference": "Observation/observation-example-string"
},
{
"reference": "Observation/observation-example-quantity"
},
{
"reference": "Observation/observation-example-boolean"
},
{
"reference": "Observation/observation-example-file"
},
{
"reference": "Observation/observation-example-catalog"
},
{
"reference": "Observation/observation-example-table"
}
],
{
"contentType": "text/plain",
"url": "Binary/binary-example",
"size": 18,
"title": "File.txt",
"creation": "2023-07-01T12:00:00+00:00"
}
]
}