2022-09-17 11:14:59 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Summary struct {
|
|
|
|
Sources []Source `json:"sources,omitempty"`
|
2022-09-18 01:36:53 -06:00
|
|
|
Patients []ResourceFhir `json:"patients,omitempty"`
|
2022-09-17 11:14:59 -06:00
|
|
|
ResourceTypeCounts []map[string]interface{} `json:"resource_type_counts,omitempty"`
|
|
|
|
}
|