2022-09-13 19:02:26 -06:00
|
|
|
package pkg
|
2023-01-10 20:23:47 -07:00
|
|
|
|
2023-04-22 23:08:58 -06:00
|
|
|
type ResourceGraphType string
|
|
|
|
|
2023-01-10 20:23:47 -07:00
|
|
|
const (
|
2023-08-11 23:44:34 -06:00
|
|
|
ResourceListPageSize int = 20
|
|
|
|
|
2023-09-20 14:57:12 -06:00
|
|
|
ContextKeyTypeConfig string = "CONFIG"
|
|
|
|
ContextKeyTypeDatabase string = "REPOSITORY"
|
|
|
|
ContextKeyTypeLogger string = "LOGGER"
|
|
|
|
ContextKeyTypeEventBusServer string = "EVENT_BUS_SERVER"
|
2023-09-07 21:23:51 -06:00
|
|
|
|
2023-01-10 20:23:47 -07:00
|
|
|
ContextKeyTypeAuthUsername string = "AUTH_USERNAME"
|
|
|
|
ContextKeyTypeAuthToken string = "AUTH_TOKEN"
|
|
|
|
|
|
|
|
FhirResourceTypeComposition string = "Composition"
|
2023-04-22 23:08:58 -06:00
|
|
|
|
|
|
|
ResourceGraphTypeMedicalHistory ResourceGraphType = "MedicalHistory"
|
|
|
|
ResourceGraphTypeAddressBook ResourceGraphType = "AddressBook"
|
|
|
|
ResourceGraphTypeMedications ResourceGraphType = "Medications"
|
|
|
|
ResourceGraphTypeBillingReport ResourceGraphType = "BillingReport"
|
2023-01-10 20:23:47 -07:00
|
|
|
)
|