Skip to content
12 changes: 11 additions & 1 deletion proto/v1/fds/protobuf/stach/MetadataItem.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";

import "fds/protobuf/stach/table/Reference.proto";
import "fds/protobuf/stach/table/Wrappers.proto";

message MetadataItem {
reserved 104, 105, 200;
Expand All @@ -24,7 +25,16 @@ message MetadataItem {
string string_value = 107;
google.protobuf.Duration duration_value = 108;
google.protobuf.Timestamp timestamp_value = 109;

factset.protobuf.stach.table.DoubleArray double_array = 150;
factset.protobuf.stach.table.FloatArray float_array = 151;
factset.protobuf.stach.table.Int32Array int32_array = 152;
factset.protobuf.stach.table.Int64Array int64_array = 153;
factset.protobuf.stach.table.BoolArray bool_array = 156;
factset.protobuf.stach.table.StringArray string_array = 157;
factset.protobuf.stach.table.DurationArray duration_array = 158;
factset.protobuf.stach.table.TimestampArray timestamp_array = 159;

factset.protobuf.stach.table.Reference ref_value = 201;
}
}
}
4 changes: 1 addition & 3 deletions proto/v1/fds/protobuf/stach/table/SeriesDefinition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ import "fds/protobuf/stach/table/DataType.proto";
import "fds/protobuf/stach/table/SeriesFormat.proto";

message SeriesDefinition {
reserved 10;
reserved "header_index";

string id = 1;
string name = 2;
string description = 3;
Expand All @@ -21,5 +18,6 @@ message SeriesDefinition {
string next_sibling_id = 7;
string parent_id = 8;
string header_id = 9;
int32 header_index = 10 [deprecated = true];
SeriesFormat format = 11;
}
Loading