Whatever message this page gives is out now! Go check it out!
{
"type" : "record",
"name" : "userInfo",
"namespace" : "my.example",
"fields" : [{"name" : "age", "type" : "int"}]
}syntax = "proto3";
message Person {
string name = 1;
int32 id = 2;
string email = 3;
}