@@ -89,6 +89,9 @@ message ReportRow {
8989 // Fields available for query in `product_performance_view` table.
9090 ProductPerformanceView product_performance_view = 1 ;
9191
92+ // Fields available for query in `non_product_performance_view` table.
93+ NonProductPerformanceView non_product_performance_view = 7 ;
94+
9295 // Fields available for query in `product_view` table.
9396 ProductView product_view = 2 ;
9497
@@ -902,6 +905,42 @@ message BestSellersBrandView {
902905 relative_demand_change = 11;
903906}
904907
908+ // Fields available for query in `non_product_performance_view` table.
909+ //
910+ // Performance data on images and online store links leading to your non-product
911+ // pages. This includes performance metrics (for example, `clicks`)
912+ // and dimensions according to which performance metrics are segmented (for
913+ // example, `date`).
914+ //
915+ // Segment fields cannot be selected in queries without also selecting at least
916+ // one metric field.
917+ //
918+ // Values are only set for fields requested explicitly in the request's search
919+ // query.
920+ message NonProductPerformanceView {
921+ // Date in the merchant timezone to which metrics apply. Segment.
922+ //
923+ // Condition on `date` is required in the `WHERE` clause.
924+ google.type.Date date = 1 ;
925+
926+ // First day of the week (Monday) of the metrics date in the merchant
927+ // timezone. Segment.
928+ google.type.Date week = 2 ;
929+
930+ // Number of clicks on images and online store links leading to your
931+ // non-product pages. Metric.
932+ optional int64 clicks = 3 ;
933+
934+ // Number of times images and online store links leading to your non-product
935+ // pages were shown. Metric.
936+ optional int64 impressions = 4 ;
937+
938+ // Click-through rate - the number of clicks (`clicks`) divided by the number
939+ // of impressions (`impressions`) of images and online store links leading to
940+ // your non-product pages. Metric.
941+ optional double click_through_rate = 5 ;
942+ }
943+
905944// Fields available for query in `competitive_visibility_competitor_view` table.
906945//
907946// [Competitive
0 commit comments