Skip to content

Commit 244a741

Browse files
authored
Add files via upload
Added validation metadata for mandatory field
1 parent d51f99e commit 244a741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: bsi_flex_335_v2_0/error.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ message Error {
1919
reserved 2; // The error message field was changed to an array to allow an Error Message to report multiple errors in one go
2020
optional bytes packet = 1 [(field_options) = {is_mandatory: true}]; // Packet which caused the error
2121
// optional string error_message = 2 [(field_options) = {is_mandatory: true}]; // Description of the error being reported
22-
repeated string error_message = 3; // Description of the error being reported, this field is an array to allow multiple errors to be reported in one go
22+
repeated string error_message = 3 [(field_options) = {is_mandatory: true}]; // Description of the error being reported, this field is an array to allow multiple errors to be reported in one go
2323
}
2424
// [END messages]

0 commit comments

Comments
 (0)