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", "contained": [ { "resourceType": "Practitioner", "id": "practitioner-example", "name": [ { "family": "Meier", "given": [ "Hans" ] } ] } ], "identifier": [ { "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", "identifier": { "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", "identifier": { "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", "performer": [ { "reference": "#practitioner-example" } ], "specimen": [ { "reference": "Specimen/specimen-example", "identifier": { "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" } ], "presentedForm": [ { "contentType": "text/plain", "url": "Binary/binary-example", "size": 18, "title": "File.txt", "creation": "2023-07-01T12:00:00+00:00" } ] }