package book_sample; /* @Indexed */ message Book { /* @Field(store = Store.YES, analyze = Analyze.YES */ optional string title = 1; /* @Field(store = Store.YES, analyze = Analyze.YES */ optional string description = 2; optional int32 publicationYear = 3; // no native Date type available in Protobuf repeated Author authors = 4; } message Author { optional string name = 1; optional string surname = 2; }