diff --git a/Protos/V1/results_common.proto b/Protos/V1/results_common.proto index a19f1dd19..df4bd6e25 100644 --- a/Protos/V1/results_common.proto +++ b/Protos/V1/results_common.proto @@ -24,6 +24,7 @@ message ResultRaw { google.protobuf.Timestamp completed_at = 6; /** The result completion date. */ string result_id = 8; /** The result ID. Uniquely generated by the server. */ int64 size = 9; /** The size of the Result Data. */ + string created_by = 10; /** The ID of the Task that as submitted this result.*/ } /** diff --git a/Protos/V1/results_fields.proto b/Protos/V1/results_fields.proto index 25ee9f0c1..028d495eb 100644 --- a/Protos/V1/results_fields.proto +++ b/Protos/V1/results_fields.proto @@ -17,6 +17,7 @@ enum ResultRawEnumField { RESULT_RAW_ENUM_FIELD_COMPLETED_AT = 6; /** The result completion date. */ RESULT_RAW_ENUM_FIELD_RESULT_ID = 7; /** The result ID. */ RESULT_RAW_ENUM_FIELD_SIZE = 8; /** The size of the result. */ + RESULT_RAW_ENUM_FIELD_CREATED_BY = 9; /** The size of the result. */ } /**