A DataSource defines a source of data in a DataStore and is used for input and output for a Plugin.
type DataSource struct {
Name string `json:"name" yaml:"name"`
ID *uuid.UUID `json:"id,omitempty" yaml:id omitempty`
Paths map[string]string `json:"paths" yaml:"paths"`
DataPaths map[string]string `json:"data_paths" yaml:"data_paths"`
StoreName string `json:"store_name" yaml:"store_name"`
}
CODE