data_source.proto
path vega/data_source.proto
package vega
Messages
DataSourceDefinition
DataSourceDefinition represents the top level object that deals with data sources. DataSourceDefinition can be external or internal, with whatever number of data sources are defined for each type in the child objects below.
Name | Type | Description |
---|---|---|
internal | DataSourceDefinitionInternal | |
external | DataSourceDefinitionExternal |
DataSourceDefinitionExternal
DataSourceDefinitionExternal is the top level object used for all external data sources. It contains one of any of the defined `SourceType` variants.
Name | Type | Description |
---|---|---|
oracle | DataSourceSpecConfiguration |
DataSourceDefinitionInternal
DataSourceDefinitionInternal is the top level object used for all internal data sources. It contains one of any of the defined `SourceType` variants.
Name | Type | Description |
---|---|---|
time | DataSourceSpecConfigurationTime |
DataSourceSpec
Data source spec describes the data source base that a product or a risk model wants to get from the data source engine. This message contains additional information used by the API.
Name | Type | Description |
---|---|---|
id | string | Hash generated from the DataSpec data. |
created_at | int64 | Creation date and time |
updated_at | int64 | Last Updated timestamp |
data | DataSourceDefinition | |
status | DataSourceSpec.Status | Status describes the status of the data source spec |
DataSourceSpecConfiguration
All types of external data sources use the same configuration set for meeting requirements in order for the data to be useful for Vega - valid signatures and matching filters.
Name | Type | Description |
---|---|---|
signers | data.v1.Signer | Signers is the list of authorized signatures that signed the data for this source. All the signatures in the data source data should be contained in this external source. All the signatures in the data should be contained in this list. |
filters | data.v1.Filter | Filters describes which source data are considered of interest or not for the product (or the risk model). |
DataSourceSpecConfigurationTime
DataSourceSpecConfigurationTime is the internal data source used for emitting timestamps.
Name | Type | Description |
---|---|---|
conditions | data.v1.Condition | Conditions that the timestamps should meet in order to be considered. |
ExternalDataSourceSpec
Name | Type | Description |
---|---|---|
spec | DataSourceSpec |
Enums
DataSourceSpec.Status
Status describe the status of the data source spec
Name | Number | Description |
---|---|---|
STATUS_UNSPECIFIED | 0 | Default value. |
STATUS_ACTIVE | 1 | STATUS_ACTIVE describes an active data source spec. |
STATUS_DEACTIVATED | 2 | STATUS_DEACTIVATED describes an data source spec that is not listening to data anymore. |