{
"response": {
"status": [
{
"code": "red",
"text": "random sentence"
},
{"code": "blue"}
],
"recent": []
}
}
For above json, I want to have proper protobuf syntax. Below is just an outline to show the idea. I know that below proto won't work.
syntax = 'proto3';
map< string, repeated map <string, string > > response = 1;
How can I write this in protobuf syntax?