proto/validate_structural_oneof_zero_invalid.proto
syntax = "proto3";
package validate_structural_oneof_zero_invalid;
import "buf/validate/validate.proto";
message MessageOneofZeroFields {
option (buf.validate.message).oneof = {
required: true
};
string value = 1;
}