message Customer { string id = 1; string name = 2; }
message Order {
string order_id = 1; ref Customer customer = 2; list<string> items = 3; }