Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion proto/shared/shared.data_type.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,18 @@ message GenericType {

// target get mapped to source
message GenericMapper {
// Strategy to combine generic keys
enum GenericCombinationStrategy {
UNKNOWN = 0;
AND = 1;
OR = 2;
}

// can point to another generic or to a resolved data type
// Assigns source to this source
DataTypeIdentifier source = 1;
repeated DataTypeIdentifier source = 1;
// can only be a generic key for example: 'T', 'V'
string target = 2;

repeated GenericCombinationStrategy generic_combinations = 3;
}