syntax = "proto3"; package tgnews_index; message Doc { bytes title = 1; bytes url = 2; string lang = 3; string category = 4; repeated float embed = 5; int64 timestamp = 6; int64 age = 7; } message Docs { map docs = 1; // names to docs }