
* ISSUE-3674: Setting untyped object schema for "map" protobuf fields * com.provectus.kafka.ui.util.jsonschema classes visibility refactoring * kafka-ui-serdes.yaml changes rolled back --------- Co-authored-by: iliax <ikuramshin@provectus.com>
14 lines
251 B
Protocol Buffer
14 lines
251 B
Protocol Buffer
syntax = "proto3";
|
|
package test;
|
|
|
|
message MySpecificTopicValue {
|
|
string f1 = 1;
|
|
string f2 = 2;
|
|
}
|
|
|
|
message MyValue {
|
|
int32 version = 1;
|
|
string payload = 2;
|
|
map<int32, string> intToStringMap = 3;
|
|
map<string, MyValue> strToObjMap = 4;
|
|
}
|