You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
syntax = "proto2";
|
|
|
|
package report;
|
|
|
|
message Keyword {
|
|
required string value = 1;
|
|
}
|
|
|
|
message Keywords {
|
|
repeated Keyword keyword = 1;
|
|
}
|
|
|
|
message Record {
|
|
required string timestamp = 1;
|
|
required string event = 2;
|
|
required int64 timing = 3;
|
|
}
|
|
|
|
message Report {
|
|
repeated Record record = 1;
|
|
}
|