33 lines
516 B
Protocol Buffer
33 lines
516 B
Protocol Buffer
syntax = "proto3";
|
|
package tutorial;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
option go_package = ".";
|
|
|
|
message Person {
|
|
string name = 1;
|
|
int32 id = 2;
|
|
string email = 3;
|
|
|
|
message PhoneNumber {
|
|
string number = 1;
|
|
PhoneType type = 2;
|
|
}
|
|
|
|
repeated PhoneNumber phones = 4;
|
|
|
|
google.protobuf.Timestamp last_updated = 5;
|
|
}
|
|
|
|
enum PhoneType {
|
|
PHONE_TYPE_UNSPECIFIED = 0;
|
|
PHONE_TYPE_MOBILE = 1;
|
|
PHONE_TYPE_HOME = 2;
|
|
PHONE_TYPE_WORK = 3;
|
|
}
|
|
|
|
message AddressBook {
|
|
repeated Person people = 1;
|
|
}
|