Skip to main content

proto/validate_structural_oneof_duplicate_invalid.proto

syntax = "proto3";

package validate_structural_oneof_duplicate_invalid;

import "buf/validate/validate.proto";

message MessageOneofDuplicateField {
  option (buf.validate.message).oneof = {
    fields: ["value", "value"]
  };

  string value = 1;
}