Example/Sources/example.proto (13 lines of code) (raw):

syntax = "proto3"; message Person { string name = 1; int32 id = 2; string email = 3; } message AddressBook { repeated Person people = 1; optional bool is_current = 2; } message Address { string street = 1 [deprecated = true]; }