Protobuf3: How to describe map of repeated string?
I had the same need, and got the same error. I do not believe this is possible. Here is the relevant BNF definitions from the language specification. https://developers.google.com/protocol-buffers/docs/reference/proto3-spec messageType = [ “.” ] { ident “.” } messageName mapField = “map” “<” keyType “,” type “>” mapName “=” fieldNumber [ “[“fieldOptions “]” ] “;” type … Read more