-
Notifications
You must be signed in to change notification settings - Fork 51
/
ga_block.view.lkml
717 lines (653 loc) · 20.4 KB
/
ga_block.view.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
explore: ga_sessions_base {
persist_for: "1 hour"
extension: required
view_name: ga_sessions
view_label: "Session"
join: totals {
view_label: "Session"
sql: LEFT JOIN UNNEST([${ga_sessions.totals}]) as totals ;;
relationship: one_to_one
}
join: trafficSource {
view_label: "Session: Traffic Source"
sql: LEFT JOIN UNNEST([${ga_sessions.trafficSource}]) as trafficSource ;;
relationship: one_to_one
}
# join: adwordsClickInfo {
# view_label: "Session: Traffic Source : Adwords"
# sql: LEFT JOIN UNNEST([${trafficSource.adwordsClickInfo}]) as adwordsClickInfo;;
# relationship: one_to_one
# }
# join: DoubleClickClickInfo {
# view_label: "Session: Traffic Source : DoubleClick"
# sql: LEFT JOIN UNNEST([${trafficSource.DoubleClickClickInfo}]) as DoubleClickClickInfo;;
# relationship: one_to_one
# }
join: device {
view_label: "Session: Device"
sql: LEFT JOIN UNNEST([${ga_sessions.device}]) as device ;;
relationship: one_to_one
}
join: geoNetwork {
view_label: "Session: Geo Network"
sql: LEFT JOIN UNNEST([${ga_sessions.geoNetwork}]) as geoNetwork ;;
relationship: one_to_one
}
join: hits {
view_label: "Session: Hits"
sql: LEFT JOIN UNNEST(${ga_sessions.hits}) as hits ;;
relationship: one_to_many
}
join: hits_page {
view_label: "Session: Hits: Page"
sql: LEFT JOIN UNNEST([${hits.page}]) as hits_page ;;
relationship: one_to_one
}
join: hits_transaction {
view_label: "Session: Hits: Transaction"
sql: LEFT JOIN UNNEST([${hits.transaction}]) as hits_transaction ;;
relationship: one_to_one
}
join: hits_item {
view_label: "Session: Hits: Item"
sql: LEFT JOIN UNNEST([${hits.item}]) as hits_item ;;
relationship: one_to_one
}
join: hits_social {
view_label: "Session: Hits: Social"
sql: LEFT JOIN UNNEST([${hits.social}]) as hits_social ;;
relationship: one_to_one
}
join: hits_publisher {
view_label: "Session: Hits: Publisher"
sql: LEFT JOIN UNNEST([${hits.publisher}]) as hits_publisher ;;
relationship: one_to_one
}
join: hits_appInfo {
view_label: "Session: Hits: App Info"
sql: LEFT JOIN UNNEST([${hits.appInfo}]) as hits_appInfo ;;
relationship: one_to_one
}
join: hits_eventInfo{
view_label: "Session: Hits: Events Info"
sql: LEFT JOIN UNNEST([${hits.eventInfo}]) as hits_eventInfo ;;
relationship: one_to_one
}
# join: hits_sourcePropertyInfo {
# view_label: "Session: Hits: Property"
# sql: LEFT JOIN UNNEST([hits.sourcePropertyInfo]) as hits_sourcePropertyInfo ;;
# relationship: one_to_one
# required_joins: [hits]
# }
# join: hits_eCommerceAction {
# view_label: "Session: Hits: eCommerce"
# sql: LEFT JOIN UNNEST([hits.eCommerceAction]) as hits_eCommerceAction;;
# relationship: one_to_one
# required_joins: [hits]
# }
join: hits_customDimensions {
view_label: "Session: Hits: Custom Dimensions"
sql: LEFT JOIN UNNEST(${hits.customDimensions}) as hits_customDimensions ;;
relationship: one_to_many
}
join: hits_customVariables{
view_label: "Session: Hits: Custom Variables"
sql: LEFT JOIN UNNEST(${hits.customVariables}) as hits_customVariables ;;
relationship: one_to_many
}
join: first_hit {
from: hits
sql: LEFT JOIN UNNEST(${ga_sessions.hits}) as first_hit ;;
relationship: one_to_one
sql_where: ${first_hit.hitNumber} = 1 ;;
fields: [first_hit.page]
}
join: first_page {
view_label: "Session: First Page Visited"
from: hits_page
sql: LEFT JOIN UNNEST([${first_hit.page}]) as first_page ;;
relationship: one_to_one
}
}
view: ga_sessions_base {
extension: required
dimension: partition_date {
type: date_time
sql: TIMESTAMP(PARSE_DATE('%Y%m%d', REGEXP_EXTRACT(_TABLE_SUFFIX,r'^\d\d\d\d\d\d\d\d'))) ;;
}
dimension: id {
primary_key: yes
sql: CONCAT(CAST(${fullVisitorId} AS STRING), '|', COALESCE(CAST(${visitId} AS STRING),''), CAST(PARSE_DATE('%Y%m%d', REGEXP_EXTRACT(_TABLE_SUFFIX,r'^\d\d\d\d\d\d\d\d')) AS STRING)) ;;
}
dimension: visitorId {label: "Visitor ID"}
dimension: visitnumber {
label: "Visit Number"
type: number
description: "The session number for this user. If this is the first session, then this is set to 1."
}
dimension: first_time_visitor {
type: yesno
sql: ${visitnumber} = 1 ;;
}
dimension: visitnumbertier {
label: "Visit Number Tier"
type: tier
tiers: [1,2,5,10,15,20,50,100]
style: integer
sql: ${visitnumber} ;;
}
dimension: visitId {label: "Visit ID"}
dimension: fullVisitorId {label: "Full Visitor ID"}
dimension: visitStartSeconds {
label: "Visit Start Seconds"
type: date_time
sql: TIMESTAMP_SECONDS(${TABLE}.visitStarttime) ;;
hidden: yes
}
## referencing partition_date for demo purposes only. Switch this dimension to reference visistStartSeconds
dimension_group: visitStart {
timeframes: [date,day_of_week,fiscal_quarter,week,month,year,month_name,month_num,week_of_year]
label: "Visit Start"
type: time
sql: (TIMESTAMP(${visitStartSeconds})) ;;
}
## use visit or hit start time instead
dimension: date {
hidden: yes
}
dimension: socialEngagementType {label: "Social Engagement Type"}
dimension: userid {label: "User ID"}
measure: session_count {
type: count
filters: {
field: hits.isInteraction
value: "yes"
}
drill_fields: [fullVisitorId, visitnumber, session_count, totals.transactions_count, totals.transactionRevenue_total]
}
measure: unique_visitors {
type: count_distinct
sql: ${fullVisitorId} ;;
drill_fields: [fullVisitorId, visitnumber, session_count, totals.hits, totals.page_views, totals.timeonsite]
}
measure: average_sessions_ver_visitor {
type: number
sql: 1.0 * (${session_count}/NULLIF(${unique_visitors},0)) ;;
value_format_name: decimal_2
drill_fields: [fullVisitorId, visitnumber, session_count, totals.hits, totals.page_views, totals.timeonsite]
}
measure: total_visitors {
type: count
drill_fields: [fullVisitorId, visitnumber, session_count, totals.hits, totals.page_views, totals.timeonsite]
}
measure: first_time_visitors {
label: "First Time Visitors"
type: count
filters: {
field: visitnumber
value: "1"
}
}
measure: second_time_visitors {
label: "Second Time Visitors"
type: count
filters: {
field: visitnumber
value: "2"
}
}
measure: returning_visitors {
label: "Returning Visitors"
type: count
filters: {
field: visitnumber
value: "<> 1"
}
}
dimension: channelGrouping {label: "Channel Grouping"}
# subrecords
dimension: geoNetwork {hidden: yes}
dimension: totals {hidden:yes}
dimension: trafficSource {hidden:yes}
dimension: device {hidden:yes}
dimension: customDimensions {hidden:yes}
dimension: hits {hidden:yes}
dimension: hits_eventInfo {hidden:yes}
}
view: geoNetwork_base {
extension: required
dimension: continent {
drill_fields: [subcontinent,country,region,city,metro,approximate_networkLocation,networkLocation]
}
dimension: subcontinent {
drill_fields: [country,region,city,metro,approximate_networkLocation,networkLocation]
}
dimension: country {
map_layer_name: countries
drill_fields: [region,metro,city,approximate_networkLocation,networkLocation]
}
dimension: region {
drill_fields: [metro,city,approximate_networkLocation,networkLocation]
}
dimension: metro {
drill_fields: [city,approximate_networkLocation,networkLocation]
}
dimension: city {drill_fields: [metro,approximate_networkLocation,networkLocation]}
dimension: cityid { label: "City ID"}
dimension: networkDomain {label: "Network Domain"}
dimension: latitude {
type: number
hidden: yes
sql: CAST(${TABLE}.latitude as FLOAT64);;
}
dimension: longitude {
type: number
hidden: yes
sql: CAST(${TABLE}.longitude as FLOAT64);;
}
dimension: networkLocation {label: "Network Location"}
dimension: location {
type: location
sql_latitude: ${latitude} ;;
sql_longitude: ${longitude} ;;
}
dimension: approximate_networkLocation {
type: location
sql_latitude: ROUND(${latitude},1) ;;
sql_longitude: ROUND(${longitude},1) ;;
drill_fields: [networkLocation]
}
}
view: totals_base {
extension: required
dimension: id {
primary_key: yes
hidden: yes
sql: ${ga_sessions.id} ;;
}
measure: visits_total {
type: sum
sql: ${TABLE}.visits ;;
}
measure: hits_total {
type: sum
sql: ${TABLE}.hits ;;
drill_fields: [hits.detail*]
}
measure: hits_average_per_session {
type: number
sql: 1.0 * ${hits_total} / NULLIF(${ga_sessions.session_count},0) ;;
value_format_name: decimal_2
}
measure: pageviews_total {
label: "Page Views"
type: sum
sql: ${TABLE}.pageviews ;;
}
measure: timeonsite_total {
label: "Time On Site"
type: sum
sql: ${TABLE}.timeonsite ;;
}
dimension: timeonsite_tier {
label: "Time On Site Tier"
type: tier
sql: ${TABLE}.timeonsite ;;
tiers: [0,15,30,60,120,180,240,300,600]
style: integer
}
measure: timeonsite_average_per_session {
label: "Time On Site Average Per Session"
type: number
sql: 1.0 * ${timeonsite_total} / NULLIF(${ga_sessions.session_count},0) ;;
value_format_name: decimal_2
}
measure: page_views_session {
label: "PageViews Per Session"
type: number
sql: 1.0 * ${pageviews_total} / NULLIF(${ga_sessions.session_count},0) ;;
value_format_name: decimal_2
}
measure: bounces_total {
type: sum
sql: ${TABLE}.bounces ;;
}
measure: bounce_rate {
type: number
sql: 1.0 * ${bounces_total} / NULLIF(${ga_sessions.session_count},0) ;;
value_format_name: percent_2
}
measure: transactions_count {
type: sum
sql: ${TABLE}.transactions ;;
}
measure: transactionRevenue_total {
label: "Transaction Revenue Total"
type: sum
sql: (${TABLE}.transactionRevenue/1000000) ;;
value_format_name: usd_0
drill_fields: [transactions_count, transactionRevenue_total]
}
measure: newVisits_total {
label: "New Visits Total"
type: sum
sql: ${TABLE}.newVisits ;;
}
measure: screenViews_total {
label: "Screen Views Total"
type: sum
sql: ${TABLE}.screenViews ;;
}
measure: timeOnScreen_total{
label: "Time On Screen Total"
type: sum
sql: ${TABLE}.timeOnScreen ;;
}
measure: uniqueScreenViews_total {
label: "Unique Screen Views Total"
type: sum
sql: ${TABLE}.uniqueScreenViews ;;
}
dimension: timeOnScreen_total_unique{
label: "Time On Screen Total"
type: number
sql: ${TABLE}.timeOnScreen ;;
}
}
view: trafficSource_base {
extension: required
dimension: addContent {}
# dimension: adwords {}
dimension: referralPath {label: "Referral Path"}
dimension: campaign {}
dimension: source {}
dimension: medium {}
dimension: keyword {}
dimension: adContent {label: "Ad Content"}
measure: source_list {
type: list
list_field: source
}
measure: source_count {
type: count_distinct
sql: ${source} ;;
drill_fields: [source, totals.hits, totals.pageviews]
}
measure: keyword_count {
type: count_distinct
sql: ${keyword} ;;
drill_fields: [keyword, totals.hits, totals.pageviews]
}
# Subrecords
# dimension: adwordsClickInfo {}
}
view: adwordsClickInfo_base {
extension: required
dimension: campaignId {label: "Campaign ID"}
dimension: adGroupId {label: "Ad Group ID"}
dimension: creativeId {label: "Creative ID"}
dimension: criteriaId {label: "Criteria ID"}
dimension: page {type: number}
dimension: slot {}
dimension: criteriaParameters {label: "Criteria Parameters"}
dimension: gclId {}
dimension: customerId {label: "Customer ID"}
dimension: adNetworkType {label: "Ad Network Type"}
dimension: targetingCriteria {label: "Targeting Criteria"}
dimension: isVideoAd {
label: "Is Video Ad"
type: yesno
}
}
view: device_base {
extension: required
dimension: browser {}
dimension: browserVersion {label:"Browser Version"}
dimension: operatingSystem {label: "Operating System"}
dimension: operatingSystemVersion {label: "Operating System Version"}
dimension: deviceCategory { label:"Device Category" description:"mobile,tablet,desktop"}
dimension: isMobile {type: yesno label: "Is Mobile" sql: ${deviceCategory} in ('mobile','tablet') ;; }
dimension: isDesktop {type: yesno label: "Is Desktop" sql: ${deviceCategory} = 'desktop' ;; }
dimension: flashVersion {label: "Flash Version"}
dimension: javaEnabled {
label: "Java Enabled"
type: yesno
}
dimension: language {}
dimension: screenColors {label: "Screen Colors"}
dimension: screenResolution {label: "Screen Resolution"}
dimension: mobileDeviceBranding {label: "Mobile Device Branding"}
dimension: mobileDeviceInfo {label: "Mobile Device Info"}
dimension: mobileDeviceMarketingName {label: "Mobile Device Marketing Name"}
dimension: mobileDeviceModel {label: "Mobile Device Model"}
dimension: mobileDeviceInputSelector {label: "Mobile Device Input Selector"}
}
view: hits_base {
extension: required
dimension: id {
primary_key: yes
sql: CONCAT(${ga_sessions.id},'|',FORMAT('%05d',${hitNumber})) ;;
}
dimension: hitNumber {}
dimension: time {}
dimension_group: hit {
timeframes: [date,day_of_week,fiscal_quarter,week,month,year,month_name,month_num,week_of_year]
type: time
sql: TIMESTAMP_MILLIS(${ga_sessions.visitStartSeconds}*1000 + ${TABLE}.time) ;;
}
dimension: hour {}
dimension: minute {}
dimension: isSecure {
label: "Is Secure"
type: yesno
}
dimension: isInteraction {
label: "Is Interaction"
type: yesno
description: "If this hit was an interaction, this is set to true. If this was a non-interaction hit (i.e., an event with interaction set to false), this is false."
}
dimension: referer {}
measure: count {
type: count
drill_fields: [hits.detail*]
}
# subrecords
dimension: page {hidden:yes}
dimension: transaction {hidden:yes}
dimension: item {hidden:yes}
dimension: contentinfo {hidden:yes}
dimension: social {hidden: yes}
dimension: publisher {hidden: yes}
dimension: appInfo {hidden: yes}
dimension: contentInfo {hidden: yes}
dimension: customDimensions {hidden: yes}
dimension: customMetrics {hidden: yes}
dimension: customVariables {hidden: yes}
dimension: ecommerceAction {hidden: yes}
dimension: eventInfo {hidden:yes}
dimension: exceptionInfo {hidden: yes}
dimension: experiment {hidden: yes}
set: detail {
fields: [ga_sessions.id, ga_sessions.visitnumber, ga_sessions.session_count, hits_page.pagePath, hits.pageTitle]
}
}
view: hits_page_base {
extension: required
dimension: pagePath {
label: "Page Path"
link: {
label: "Link"
url: "{{ value }}"
}
link: {
label: "Page Info Dashboard"
url: "/dashboards/101?Page%20Path={{ value | encode_uri}}"
icon_url: "http://www.looker.com/favicon.ico"
}
}
dimension: hostName {label: "Host Name"}
dimension: pageTitle {label: "Page Title"}
dimension: searchKeyword {label: "Search Keyword"}
dimension: searchCategory{label: "Search Category"}
}
view: hits_transaction_base {
extension: required
dimension: id {
primary_key: yes
sql: ${hits.id} ;;
}
dimension: transactionShipping {label: "Transaction Shipping"}
dimension: affiliation {}
dimension: currencyCode {label: "Curency Code"}
dimension: localTransactionRevenue {label: "Local Transaction Revenue"}
dimension: localTransactionTax {label: "Local Transaction Tax"}
dimension: localTransactionShipping {label: "Local Transaction Shipping"}
}
view: hits_item_base {
extension: required
dimension: id {
primary_key: yes
sql: ${hits.id} ;;
}
dimension: transactionId {label: "Transaction ID"}
dimension: productName {
label: "Product Name"
}
dimension: productCategory {label: "Product Catetory"}
dimension: productSku {label: "Product Sku"}
dimension: itemQuantity {
description: "Should only be used as a dimension"
label: "Item Quantity"
hidden: yes
}
dimension: itemRevenue {
description: "Should only be used as a dimension"
label: "Item Revenue"
hidden: yes
}
dimension: curencyCode {label: "Curency Code"}
dimension: localItemRevenue {
label:"Local Item Revenue"
description: "Should only be used as a dimension"
}
measure: product_count {
type: count_distinct
sql: ${productSku} ;;
drill_fields: [productName, productCategory, productSku, total_item_revenue]
}
}
view: hits_social_base {
extension: required ## THESE FIELDS WILL ONLY BE AVAILABLE IF VIEW "hits_social" IN GA CUSTOMIZE HAS THE "extends" parameter declared
dimension: socialInteractionNetwork {label: "Social Interaction Network"}
dimension: socialInteractionAction {label: "Social Interaction Action"}
dimension: socialInteractions {label: "Social Interactions"}
dimension: socialInteractionTarget {label: "Social Interaction Target"}
dimension: socialNetwork {label: "Social Network"}
dimension: uniqueSocialInteractions {
label: "Unique Social Interactions"
type: number
}
dimension: hasSocialSourceReferral {label: "Has Social Source Referral"}
dimension: socialInteractionNetworkAction {label: "Social Interaction Network Action"}
}
view: hits_publisher_base {
extension: required ## THESE FIELDS WILL ONLY BE AVAILABLE IF VIEW "hits_publisher" IN GA CUSTOMIZE HAS THE "extends" parameter declared
dimension: dfpClicks {}
dimension: dfpImpressions {}
dimension: dfpMatchedQueries {}
dimension: dfpMeasurableImpressions {}
dimension: dfpQueries {}
dimension: dfpRevenueCpm {}
dimension: dfpRevenueCpc {}
dimension: dfpViewableImpressions {}
dimension: dfpPagesViewed {}
dimension: adsenseBackfillDfpClicks {}
dimension: adsenseBackfillDfpImpressions {}
dimension: adsenseBackfillDfpMatchedQueries {}
dimension: adsenseBackfillDfpMeasurableImpressions {}
dimension: adsenseBackfillDfpQueries {}
dimension: adsenseBackfillDfpRevenueCpm {}
dimension: adsenseBackfillDfpRevenueCpc {}
dimension: adsenseBackfillDfpViewableImpressions {}
dimension: adsenseBackfillDfpPagesViewed {}
dimension: adxBackfillDfpClicks {}
dimension: adxBackfillDfpImpressions {}
dimension: adxBackfillDfpMatchedQueries {}
dimension: adxBackfillDfpMeasurableImpressions {}
dimension: adxBackfillDfpQueries {}
dimension: adxBackfillDfpRevenueCpm {}
dimension: adxBackfillDfpRevenueCpc {}
dimension: adxBackfillDfpViewableImpressions {}
dimension: adxBackfillDfpPagesViewed {}
dimension: adxClicks {}
dimension: adxImpressions {}
dimension: adxMatchedQueries {}
dimension: adxMeasurableImpressions {}
dimension: adxQueries {}
dimension: adxRevenue {}
dimension: adxViewableImpressions {}
dimension: adxPagesViewed {}
dimension: adsViewed {}
dimension: adsUnitsViewed {}
dimension: adsUnitsMatched {}
dimension: viewableAdsViewed {}
dimension: measurableAdsViewed {}
dimension: adsPagesViewed {}
dimension: adsClicked {}
dimension: adsRevenue {}
dimension: dfpAdGroup {}
dimension: dfpAdUnits {}
dimension: dfpNetworkId {}
}
view: hits_appInfo_base {
extension: required
dimension: name {}
dimension: version {}
dimension: id {}
dimension: installerId {}
dimension: appInstallerId {}
dimension: appName {}
dimension: appVersion {}
dimension: appId {}
dimension: screenName {}
dimension: landingScreenName {}
dimension: exitScreenName {}
dimension: screenDepth {}
}
view: contentInfo_base {
extension: required
dimension: contentDescription {}
}
view: hits_customDimensions_base {
extension: required
dimension: index {type:number}
dimension: value {}
}
view: hits_customMetrics_base {
extension: required
dimension: index {type:number}
dimension: value {}
}
view: hits_customVariables_base {
extension: required
dimension: customVarName {}
dimension: customVarValue {}
dimension: index {type:number}
}
view: hits_eCommerceAction_base {
extension: required
dimension: action_type {}
dimension: option {}
dimension: step {}
}
view: hits_eventInfo_base {
extension: required
dimension: eventCategory {label: "Event Category"}
dimension: eventAction {label: "Event Action"}
dimension: eventLabel {label: "Event Label"}
dimension: eventValue {label: "Event Value"}
}
# view: hits_sourcePropertyInfo {
# # extension: required
# dimension: sourcePropertyDisplayName {label: "Property Display Name"}
# }