From 50cf755bd48f01f4453289441b34b197557497e0 Mon Sep 17 00:00:00 2001 From: Kristen Kozak Date: Fri, 28 Sep 2018 13:24:21 -0700 Subject: [PATCH] pb: add "categories" field to Product This field can be used as the context keys to look up relevant ads in the ad service. --- pb/demo.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pb/demo.proto b/pb/demo.proto index 09e5e4d..46e6b7c 100644 --- a/pb/demo.proto +++ b/pb/demo.proto @@ -64,6 +64,10 @@ message Product { string description = 3; string picture = 4; Money price_usd = 5; + + // Categories such as "vintage" or "gardening" that can be used to look up + // other related products. + repeated string categories = 6; } message ListProductsResponse {