I'm trying to use Protocol Buffers for message serialization.
My message format should contain Map< String, Object > entries ... but how do I write the .proto definition?
As far as I know, Protocol Buffers does not have a build-in Map type. I could model around that using repeating fields. But the big problem I have is, that you need to define all your types. I want my message to be flexible, so I can't specify the types.
Any ideas?