package model // DiagnosticReportRequest defines the structure for a diagnostic report request type DiagnosticReportRequest struct { Id string `json:"id,omitempty"` ResourceType string `json:"resourceType"` Identifier []Identifier `json:"identifier"` Status string `json:"status"` Category []CodeableConcept `json:"category"` Code CodeableConcept `json:"code"` Subject Reference `json:"subject"` Encounter Reference `json:"encounter"` EffectiveDateTime string `json:"effectiveDateTime"` Issued string `json:"issued"` Performer []Reference `json:"performer"` Result []Reference `json:"result"` Specimen []Reference `json:"specimen"` BasedOn []Reference `json:"basedOn"` ConclusionCode []CodeableConcept `json:"conclusionCode"` }