@adtrackify/at-tracking-event-types 3.4.14 → 3.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js +807 -369
- package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/google-measure-definitions.js +0 -15
- package/dist/cjs/types/api/measures/definitions/google-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/measures.d.ts +71 -40
- package/dist/cjs/types/api/measures/measures.js +71 -40
- package/dist/cjs/types/api/measures/measures.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js +808 -370
- package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/google-measure-definitions.js +0 -15
- package/dist/esm/types/api/measures/definitions/google-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/measures.d.ts +71 -40
- package/dist/esm/types/api/measures/measures.js +71 -40
- package/dist/esm/types/api/measures/measures.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { MEASURE } from '../measures.js';
|
|
2
2
|
import { MEASURE_CATEGORY } from './measure-categories.js';
|
|
3
3
|
import { MeasureValueType } from './measure-value-type.js';
|
|
4
|
-
import {
|
|
4
|
+
import { STANDARD_APPLICABLE_CONTEXTS } from './measure-applicable-contexts.js';
|
|
5
5
|
export const CHANNEL_MEASURES_MAP = {
|
|
6
6
|
[MEASURE.CHANNEL_SPEND]: {
|
|
7
|
-
title: '
|
|
8
|
-
description: 'The amount
|
|
7
|
+
title: 'Channel Spend',
|
|
8
|
+
description: 'The total amount spent on advertising across all channels.',
|
|
9
9
|
sumPrefix: '$',
|
|
10
10
|
sumSuffix: '',
|
|
11
11
|
avgPrefix: '$',
|
|
@@ -18,24 +18,39 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
18
18
|
useCompactNotation: true,
|
|
19
19
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
20
20
|
},
|
|
21
|
-
[MEASURE.
|
|
22
|
-
title: '
|
|
23
|
-
description: 'The number of
|
|
21
|
+
[MEASURE.CHANNEL_IMPRESSIONS]: {
|
|
22
|
+
title: 'Channel Impressions',
|
|
23
|
+
description: 'The number of times ads were shown across all channels.',
|
|
24
24
|
sumPrefix: '',
|
|
25
25
|
sumSuffix: '',
|
|
26
26
|
avgPrefix: '',
|
|
27
27
|
avgSuffix: '',
|
|
28
28
|
icon: 'channel',
|
|
29
|
-
measure: MEASURE.
|
|
29
|
+
measure: MEASURE.CHANNEL_IMPRESSIONS,
|
|
30
30
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
31
31
|
valueType: MeasureValueType.NUMBER,
|
|
32
32
|
decimalPlaces: 0,
|
|
33
33
|
useCompactNotation: false,
|
|
34
34
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
35
35
|
},
|
|
36
|
+
[MEASURE.CHANNEL_CPM]: {
|
|
37
|
+
title: 'Channel CPM',
|
|
38
|
+
description: 'The cost per thousand impressions across all channels.',
|
|
39
|
+
sumPrefix: '$',
|
|
40
|
+
sumSuffix: '',
|
|
41
|
+
avgPrefix: '$',
|
|
42
|
+
avgSuffix: '',
|
|
43
|
+
icon: 'channel',
|
|
44
|
+
measure: MEASURE.CHANNEL_CPM,
|
|
45
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
46
|
+
valueType: MeasureValueType.CURRENCY,
|
|
47
|
+
decimalPlaces: 2,
|
|
48
|
+
useCompactNotation: true,
|
|
49
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
50
|
+
},
|
|
36
51
|
[MEASURE.CHANNEL_FREQUENCY]: {
|
|
37
|
-
title: '
|
|
38
|
-
description: 'The average number of times each person saw
|
|
52
|
+
title: 'Channel Frequency',
|
|
53
|
+
description: 'The average number of times each person saw ads across all channels.',
|
|
39
54
|
sumPrefix: '',
|
|
40
55
|
sumSuffix: '',
|
|
41
56
|
avgPrefix: '',
|
|
@@ -48,24 +63,40 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
48
63
|
useCompactNotation: false,
|
|
49
64
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
50
65
|
},
|
|
51
|
-
[MEASURE.
|
|
52
|
-
title: '
|
|
53
|
-
description: 'The number of
|
|
66
|
+
[MEASURE.CHANNEL_REACH]: {
|
|
67
|
+
title: 'Channel Reach',
|
|
68
|
+
description: 'The number of unique people who saw ads across all channels.',
|
|
54
69
|
sumPrefix: '',
|
|
55
70
|
sumSuffix: '',
|
|
56
71
|
avgPrefix: '',
|
|
57
72
|
avgSuffix: '',
|
|
58
73
|
icon: 'channel',
|
|
59
|
-
measure: MEASURE.
|
|
74
|
+
measure: MEASURE.CHANNEL_REACH,
|
|
60
75
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
61
76
|
valueType: MeasureValueType.NUMBER,
|
|
62
77
|
decimalPlaces: 0,
|
|
63
78
|
useCompactNotation: false,
|
|
64
79
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
65
80
|
},
|
|
81
|
+
[MEASURE.CHANNEL_CPP]: {
|
|
82
|
+
title: 'Channel CPP',
|
|
83
|
+
description: 'The cost to reach 1,000 people across all channels.',
|
|
84
|
+
sumPrefix: '$',
|
|
85
|
+
sumSuffix: '',
|
|
86
|
+
avgPrefix: '$',
|
|
87
|
+
avgSuffix: '',
|
|
88
|
+
icon: 'channel',
|
|
89
|
+
measure: MEASURE.CHANNEL_CPP,
|
|
90
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
91
|
+
valueType: MeasureValueType.CURRENCY,
|
|
92
|
+
decimalPlaces: 2,
|
|
93
|
+
useCompactNotation: true,
|
|
94
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
95
|
+
aliases: [MEASURE.CHANNEL_COST_TO_REACH_1000_ACCOUNTS]
|
|
96
|
+
},
|
|
66
97
|
[MEASURE.CHANNEL_CLICKS]: {
|
|
67
|
-
title: '
|
|
68
|
-
description: 'The number of clicks
|
|
98
|
+
title: 'Channel Clicks',
|
|
99
|
+
description: 'The number of clicks on ads across all channels.',
|
|
69
100
|
sumPrefix: '',
|
|
70
101
|
sumSuffix: '',
|
|
71
102
|
avgPrefix: '',
|
|
@@ -78,9 +109,24 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
78
109
|
useCompactNotation: false,
|
|
79
110
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
80
111
|
},
|
|
112
|
+
[MEASURE.CHANNEL_CPC]: {
|
|
113
|
+
title: 'Channel CPC',
|
|
114
|
+
description: 'The cost per click across all channels.',
|
|
115
|
+
sumPrefix: '$',
|
|
116
|
+
sumSuffix: '',
|
|
117
|
+
avgPrefix: '$',
|
|
118
|
+
avgSuffix: '',
|
|
119
|
+
icon: 'channel',
|
|
120
|
+
measure: MEASURE.CHANNEL_CPC,
|
|
121
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
122
|
+
valueType: MeasureValueType.CURRENCY,
|
|
123
|
+
decimalPlaces: 2,
|
|
124
|
+
useCompactNotation: true,
|
|
125
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
126
|
+
},
|
|
81
127
|
[MEASURE.CHANNEL_CTR]: {
|
|
82
|
-
title: '
|
|
83
|
-
description: 'The
|
|
128
|
+
title: 'Channel CTR',
|
|
129
|
+
description: 'The percentage of impressions that resulted in clicks across all channels.',
|
|
84
130
|
sumPrefix: '',
|
|
85
131
|
sumSuffix: '%',
|
|
86
132
|
avgPrefix: '',
|
|
@@ -93,849 +139,1181 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
93
139
|
useCompactNotation: false,
|
|
94
140
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
95
141
|
},
|
|
96
|
-
[MEASURE.
|
|
97
|
-
title: '
|
|
98
|
-
description: 'The
|
|
142
|
+
[MEASURE.CHANNEL_UNIQUE_CLICKS]: {
|
|
143
|
+
title: 'Channel Unique Clicks',
|
|
144
|
+
description: 'The number of unique people who clicked ads across all channels.',
|
|
145
|
+
sumPrefix: '',
|
|
146
|
+
sumSuffix: '',
|
|
147
|
+
avgPrefix: '',
|
|
148
|
+
avgSuffix: '',
|
|
149
|
+
icon: 'channel',
|
|
150
|
+
measure: MEASURE.CHANNEL_UNIQUE_CLICKS,
|
|
151
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
152
|
+
valueType: MeasureValueType.NUMBER,
|
|
153
|
+
decimalPlaces: 0,
|
|
154
|
+
useCompactNotation: false,
|
|
155
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
156
|
+
},
|
|
157
|
+
[MEASURE.CHANNEL_UNIQUE_CLICKS_CTR]: {
|
|
158
|
+
title: 'Channel Unique Click CTR',
|
|
159
|
+
description: 'The percentage of impressions that resulted in unique clicks across all channels.',
|
|
160
|
+
sumPrefix: '',
|
|
161
|
+
sumSuffix: '%',
|
|
162
|
+
avgPrefix: '',
|
|
163
|
+
avgSuffix: '%',
|
|
164
|
+
icon: 'channel',
|
|
165
|
+
measure: MEASURE.CHANNEL_UNIQUE_CLICKS_CTR,
|
|
166
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
167
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
168
|
+
decimalPlaces: 2,
|
|
169
|
+
useCompactNotation: false,
|
|
170
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
171
|
+
},
|
|
172
|
+
[MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK]: {
|
|
173
|
+
title: 'Channel Cost per Unique Click',
|
|
174
|
+
description: 'The cost per unique click across all channels.',
|
|
99
175
|
sumPrefix: '$',
|
|
100
176
|
sumSuffix: '',
|
|
101
177
|
avgPrefix: '$',
|
|
102
178
|
avgSuffix: '',
|
|
103
179
|
icon: 'channel',
|
|
104
|
-
measure: MEASURE.
|
|
180
|
+
measure: MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK,
|
|
105
181
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
106
182
|
valueType: MeasureValueType.CURRENCY,
|
|
107
183
|
decimalPlaces: 2,
|
|
108
184
|
useCompactNotation: true,
|
|
109
185
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
110
186
|
},
|
|
111
|
-
[MEASURE.
|
|
112
|
-
title: '
|
|
113
|
-
description: 'The
|
|
187
|
+
[MEASURE.CHANNEL_INLINE_CLICKS]: {
|
|
188
|
+
title: 'Channel Inline Link Clicks',
|
|
189
|
+
description: 'The number of inline link clicks on ads across all channels.',
|
|
190
|
+
sumPrefix: '',
|
|
191
|
+
sumSuffix: '',
|
|
192
|
+
avgPrefix: '',
|
|
193
|
+
avgSuffix: '',
|
|
194
|
+
icon: 'channel',
|
|
195
|
+
measure: MEASURE.CHANNEL_INLINE_CLICKS,
|
|
196
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
197
|
+
valueType: MeasureValueType.NUMBER,
|
|
198
|
+
decimalPlaces: 0,
|
|
199
|
+
useCompactNotation: false,
|
|
200
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
201
|
+
},
|
|
202
|
+
[MEASURE.CHANNEL_INLINE_CLICK_CTR]: {
|
|
203
|
+
title: 'Channel Inline Link Click CTR',
|
|
204
|
+
description: 'The percentage of impressions that resulted in inline link clicks across all channels.',
|
|
205
|
+
sumPrefix: '',
|
|
206
|
+
sumSuffix: '%',
|
|
207
|
+
avgPrefix: '',
|
|
208
|
+
avgSuffix: '%',
|
|
209
|
+
icon: 'channel',
|
|
210
|
+
measure: MEASURE.CHANNEL_INLINE_CLICK_CTR,
|
|
211
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
212
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
213
|
+
decimalPlaces: 2,
|
|
214
|
+
useCompactNotation: false,
|
|
215
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
216
|
+
},
|
|
217
|
+
[MEASURE.CHANNEL_COST_PER_INLINE_CLICK]: {
|
|
218
|
+
title: 'Channel Cost per Inline Link Click',
|
|
219
|
+
description: 'The cost per inline link click across all channels.',
|
|
114
220
|
sumPrefix: '$',
|
|
115
221
|
sumSuffix: '',
|
|
116
222
|
avgPrefix: '$',
|
|
117
223
|
avgSuffix: '',
|
|
118
224
|
icon: 'channel',
|
|
119
|
-
measure: MEASURE.
|
|
225
|
+
measure: MEASURE.CHANNEL_COST_PER_INLINE_CLICK,
|
|
120
226
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
121
227
|
valueType: MeasureValueType.CURRENCY,
|
|
122
228
|
decimalPlaces: 2,
|
|
123
229
|
useCompactNotation: true,
|
|
124
230
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
125
231
|
},
|
|
126
|
-
[MEASURE.
|
|
127
|
-
title: '
|
|
128
|
-
description: 'The
|
|
232
|
+
[MEASURE.CHANNEL_OUTBOUND_CLICKS]: {
|
|
233
|
+
title: 'Channel Outbound Clicks',
|
|
234
|
+
description: 'The number of outbound clicks on ads across all channels.',
|
|
235
|
+
sumPrefix: '',
|
|
236
|
+
sumSuffix: '',
|
|
237
|
+
avgPrefix: '',
|
|
238
|
+
avgSuffix: '',
|
|
239
|
+
icon: 'channel',
|
|
240
|
+
measure: MEASURE.CHANNEL_OUTBOUND_CLICKS,
|
|
241
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
242
|
+
valueType: MeasureValueType.NUMBER,
|
|
243
|
+
decimalPlaces: 0,
|
|
244
|
+
useCompactNotation: false,
|
|
245
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
246
|
+
},
|
|
247
|
+
[MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR]: {
|
|
248
|
+
title: 'Channel Outbound Click CTR',
|
|
249
|
+
description: 'The percentage of impressions that resulted in outbound clicks across all channels.',
|
|
250
|
+
sumPrefix: '',
|
|
251
|
+
sumSuffix: '%',
|
|
252
|
+
avgPrefix: '',
|
|
253
|
+
avgSuffix: '%',
|
|
254
|
+
icon: 'channel',
|
|
255
|
+
measure: MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR,
|
|
256
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
257
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
258
|
+
decimalPlaces: 2,
|
|
259
|
+
useCompactNotation: false,
|
|
260
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
261
|
+
},
|
|
262
|
+
[MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK]: {
|
|
263
|
+
title: 'Channel Cost per Outbound Click',
|
|
264
|
+
description: 'The cost per outbound click across all channels.',
|
|
129
265
|
sumPrefix: '$',
|
|
130
266
|
sumSuffix: '',
|
|
131
267
|
avgPrefix: '$',
|
|
132
268
|
avgSuffix: '',
|
|
133
269
|
icon: 'channel',
|
|
134
|
-
measure: MEASURE.
|
|
270
|
+
measure: MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK,
|
|
135
271
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
136
272
|
valueType: MeasureValueType.CURRENCY,
|
|
137
273
|
decimalPlaces: 2,
|
|
138
274
|
useCompactNotation: true,
|
|
139
275
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
140
276
|
},
|
|
141
|
-
[MEASURE.
|
|
142
|
-
title: '
|
|
143
|
-
description: 'The
|
|
277
|
+
[MEASURE.CHANNEL_LINK_CLICKS]: {
|
|
278
|
+
title: 'Channel Link Clicks',
|
|
279
|
+
description: 'The number of link clicks on ads across all channels.',
|
|
280
|
+
sumPrefix: '',
|
|
281
|
+
sumSuffix: '',
|
|
282
|
+
avgPrefix: '',
|
|
283
|
+
avgSuffix: '',
|
|
284
|
+
icon: 'channel',
|
|
285
|
+
measure: MEASURE.CHANNEL_LINK_CLICKS,
|
|
286
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
287
|
+
valueType: MeasureValueType.NUMBER,
|
|
288
|
+
decimalPlaces: 0,
|
|
289
|
+
useCompactNotation: false,
|
|
290
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
291
|
+
},
|
|
292
|
+
[MEASURE.CHANNEL_LINK_CLICKS_CTR]: {
|
|
293
|
+
title: 'Channel Link Click CTR',
|
|
294
|
+
description: 'The percentage of impressions that resulted in link clicks across all channels.',
|
|
295
|
+
sumPrefix: '',
|
|
296
|
+
sumSuffix: '%',
|
|
297
|
+
avgPrefix: '',
|
|
298
|
+
avgSuffix: '%',
|
|
299
|
+
icon: 'channel',
|
|
300
|
+
measure: MEASURE.CHANNEL_LINK_CLICKS_CTR,
|
|
301
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
302
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
303
|
+
decimalPlaces: 2,
|
|
304
|
+
useCompactNotation: false,
|
|
305
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
306
|
+
},
|
|
307
|
+
[MEASURE.CHANNEL_COST_PER_LINK_CLICK]: {
|
|
308
|
+
title: 'Channel Cost per Link Click',
|
|
309
|
+
description: 'The cost per link click across all channels.',
|
|
144
310
|
sumPrefix: '$',
|
|
145
311
|
sumSuffix: '',
|
|
146
312
|
avgPrefix: '$',
|
|
147
313
|
avgSuffix: '',
|
|
148
314
|
icon: 'channel',
|
|
149
|
-
measure: MEASURE.
|
|
315
|
+
measure: MEASURE.CHANNEL_COST_PER_LINK_CLICK,
|
|
150
316
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
151
317
|
valueType: MeasureValueType.CURRENCY,
|
|
152
318
|
decimalPlaces: 2,
|
|
153
319
|
useCompactNotation: true,
|
|
154
320
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
155
321
|
},
|
|
156
|
-
[MEASURE.
|
|
157
|
-
title: '
|
|
158
|
-
description: 'The
|
|
322
|
+
[MEASURE.CHANNEL_PURCHASES]: {
|
|
323
|
+
title: 'Channel Purchases',
|
|
324
|
+
description: 'The number of purchases attributed to ads across all channels.',
|
|
325
|
+
sumPrefix: '',
|
|
326
|
+
sumSuffix: '',
|
|
327
|
+
avgPrefix: '',
|
|
328
|
+
avgSuffix: '',
|
|
329
|
+
icon: 'channel',
|
|
330
|
+
measure: MEASURE.CHANNEL_PURCHASES,
|
|
331
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
332
|
+
valueType: MeasureValueType.NUMBER,
|
|
333
|
+
decimalPlaces: 0,
|
|
334
|
+
useCompactNotation: false,
|
|
335
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
336
|
+
},
|
|
337
|
+
[MEASURE.CHANNEL_PURCHASES_VALUE]: {
|
|
338
|
+
title: 'Channel Purchases Value',
|
|
339
|
+
description: 'The total revenue from purchases attributed to ads across all channels.',
|
|
340
|
+
sumPrefix: '$',
|
|
341
|
+
sumSuffix: '',
|
|
342
|
+
avgPrefix: '$',
|
|
343
|
+
avgSuffix: '',
|
|
344
|
+
icon: 'channel',
|
|
345
|
+
measure: MEASURE.CHANNEL_PURCHASES_VALUE,
|
|
346
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
347
|
+
valueType: MeasureValueType.CURRENCY,
|
|
348
|
+
decimalPlaces: 2,
|
|
349
|
+
useCompactNotation: true,
|
|
350
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
351
|
+
},
|
|
352
|
+
[MEASURE.CHANNEL_CPA]: {
|
|
353
|
+
title: 'Channel CPA',
|
|
354
|
+
description: 'The cost per purchase conversion across all channels.',
|
|
355
|
+
sumPrefix: '$',
|
|
356
|
+
sumSuffix: '',
|
|
357
|
+
avgPrefix: '$',
|
|
358
|
+
avgSuffix: '',
|
|
359
|
+
icon: 'channel',
|
|
360
|
+
measure: MEASURE.CHANNEL_CPA,
|
|
361
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
362
|
+
valueType: MeasureValueType.CURRENCY,
|
|
363
|
+
decimalPlaces: 2,
|
|
364
|
+
useCompactNotation: true,
|
|
365
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
366
|
+
aliases: [MEASURE.CHANNEL_PURCHASES_COST]
|
|
367
|
+
},
|
|
368
|
+
[MEASURE.CHANNEL_ROAS]: {
|
|
369
|
+
title: 'Channel ROAS',
|
|
370
|
+
description: 'The return on ad spend across all channels.',
|
|
371
|
+
sumPrefix: '',
|
|
372
|
+
sumSuffix: 'x',
|
|
373
|
+
avgPrefix: '',
|
|
374
|
+
avgSuffix: 'x',
|
|
375
|
+
icon: 'channel',
|
|
376
|
+
measure: MEASURE.CHANNEL_ROAS,
|
|
377
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
378
|
+
valueType: MeasureValueType.MULTIPLIER,
|
|
379
|
+
decimalPlaces: 2,
|
|
380
|
+
useCompactNotation: false,
|
|
381
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
382
|
+
},
|
|
383
|
+
[MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES]: {
|
|
384
|
+
title: 'Channel New Customer Purchases',
|
|
385
|
+
description: 'The number of new customer purchases attributed to ads across all channels.',
|
|
386
|
+
sumPrefix: '',
|
|
387
|
+
sumSuffix: '',
|
|
388
|
+
avgPrefix: '',
|
|
389
|
+
avgSuffix: '',
|
|
390
|
+
icon: 'channel',
|
|
391
|
+
measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES,
|
|
392
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
393
|
+
valueType: MeasureValueType.NUMBER,
|
|
394
|
+
decimalPlaces: 0,
|
|
395
|
+
useCompactNotation: false,
|
|
396
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
397
|
+
},
|
|
398
|
+
[MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE]: {
|
|
399
|
+
title: 'Channel New Customer Purchases Value',
|
|
400
|
+
description: 'The total revenue from new customer purchases attributed to ads across all channels.',
|
|
401
|
+
sumPrefix: '$',
|
|
402
|
+
sumSuffix: '',
|
|
403
|
+
avgPrefix: '$',
|
|
404
|
+
avgSuffix: '',
|
|
405
|
+
icon: 'channel',
|
|
406
|
+
measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE,
|
|
407
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
408
|
+
valueType: MeasureValueType.CURRENCY,
|
|
409
|
+
decimalPlaces: 2,
|
|
410
|
+
useCompactNotation: true,
|
|
411
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
412
|
+
},
|
|
413
|
+
[MEASURE.CHANNEL_NEW_CUSTOMER_CPA]: {
|
|
414
|
+
title: 'Channel New Customer CPA',
|
|
415
|
+
description: 'The cost per new customer acquisition across all channels.',
|
|
416
|
+
sumPrefix: '$',
|
|
417
|
+
sumSuffix: '',
|
|
418
|
+
avgPrefix: '$',
|
|
419
|
+
avgSuffix: '',
|
|
420
|
+
icon: 'channel',
|
|
421
|
+
measure: MEASURE.CHANNEL_NEW_CUSTOMER_CPA,
|
|
422
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
423
|
+
valueType: MeasureValueType.CURRENCY,
|
|
424
|
+
decimalPlaces: 2,
|
|
425
|
+
useCompactNotation: true,
|
|
426
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
427
|
+
},
|
|
428
|
+
[MEASURE.CHANNEL_NEW_CUSTOMER_ROAS]: {
|
|
429
|
+
title: 'Channel New Customer ROAS',
|
|
430
|
+
description: 'The return on ad spend for new customer purchases across all channels.',
|
|
431
|
+
sumPrefix: '',
|
|
432
|
+
sumSuffix: 'x',
|
|
433
|
+
avgPrefix: '',
|
|
434
|
+
avgSuffix: 'x',
|
|
435
|
+
icon: 'channel',
|
|
436
|
+
measure: MEASURE.CHANNEL_NEW_CUSTOMER_ROAS,
|
|
437
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
438
|
+
valueType: MeasureValueType.MULTIPLIER,
|
|
439
|
+
decimalPlaces: 2,
|
|
440
|
+
useCompactNotation: false,
|
|
441
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
442
|
+
},
|
|
443
|
+
[MEASURE.CHANNEL_OMNI_VIEW_CONTENTS]: {
|
|
444
|
+
title: 'Channel View Contents',
|
|
445
|
+
description: 'The number of times content was viewed across all channels.',
|
|
446
|
+
sumPrefix: '',
|
|
447
|
+
sumSuffix: '',
|
|
448
|
+
avgPrefix: '',
|
|
449
|
+
avgSuffix: '',
|
|
450
|
+
icon: 'channel',
|
|
451
|
+
measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS,
|
|
452
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
453
|
+
valueType: MeasureValueType.NUMBER,
|
|
454
|
+
decimalPlaces: 0,
|
|
455
|
+
useCompactNotation: false,
|
|
456
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
457
|
+
},
|
|
458
|
+
[MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE]: {
|
|
459
|
+
title: 'Channel View Contents Value',
|
|
460
|
+
description: 'The total value associated with content views across all channels.',
|
|
461
|
+
sumPrefix: '$',
|
|
462
|
+
sumSuffix: '',
|
|
463
|
+
avgPrefix: '$',
|
|
464
|
+
avgSuffix: '',
|
|
465
|
+
icon: 'channel',
|
|
466
|
+
measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE,
|
|
467
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
468
|
+
valueType: MeasureValueType.CURRENCY,
|
|
469
|
+
decimalPlaces: 2,
|
|
470
|
+
useCompactNotation: true,
|
|
471
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
472
|
+
},
|
|
473
|
+
[MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST]: {
|
|
474
|
+
title: 'Channel Cost per View Content',
|
|
475
|
+
description: 'The cost per content view across all channels.',
|
|
476
|
+
sumPrefix: '$',
|
|
477
|
+
sumSuffix: '',
|
|
478
|
+
avgPrefix: '$',
|
|
479
|
+
avgSuffix: '',
|
|
480
|
+
icon: 'channel',
|
|
481
|
+
measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST,
|
|
482
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
483
|
+
valueType: MeasureValueType.CURRENCY,
|
|
484
|
+
decimalPlaces: 2,
|
|
485
|
+
useCompactNotation: true,
|
|
486
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
487
|
+
},
|
|
488
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_CARTS]: {
|
|
489
|
+
title: 'Channel Add to Carts',
|
|
490
|
+
description: 'The number of times products were added to cart across all channels.',
|
|
491
|
+
sumPrefix: '',
|
|
492
|
+
sumSuffix: '',
|
|
493
|
+
avgPrefix: '',
|
|
494
|
+
avgSuffix: '',
|
|
495
|
+
icon: 'channel',
|
|
496
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS,
|
|
497
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
498
|
+
valueType: MeasureValueType.NUMBER,
|
|
499
|
+
decimalPlaces: 0,
|
|
500
|
+
useCompactNotation: false,
|
|
501
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
502
|
+
},
|
|
503
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE]: {
|
|
504
|
+
title: 'Channel Add to Carts Value',
|
|
505
|
+
description: 'The total value of products added to cart across all channels.',
|
|
506
|
+
sumPrefix: '$',
|
|
507
|
+
sumSuffix: '',
|
|
508
|
+
avgPrefix: '$',
|
|
509
|
+
avgSuffix: '',
|
|
510
|
+
icon: 'channel',
|
|
511
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE,
|
|
512
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
513
|
+
valueType: MeasureValueType.CURRENCY,
|
|
514
|
+
decimalPlaces: 2,
|
|
515
|
+
useCompactNotation: true,
|
|
516
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
517
|
+
},
|
|
518
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST]: {
|
|
519
|
+
title: 'Channel Cost per Add to Cart',
|
|
520
|
+
description: 'The cost per add to cart event across all channels.',
|
|
521
|
+
sumPrefix: '$',
|
|
522
|
+
sumSuffix: '',
|
|
523
|
+
avgPrefix: '$',
|
|
524
|
+
avgSuffix: '',
|
|
525
|
+
icon: 'channel',
|
|
526
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST,
|
|
527
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
528
|
+
valueType: MeasureValueType.CURRENCY,
|
|
529
|
+
decimalPlaces: 2,
|
|
530
|
+
useCompactNotation: true,
|
|
531
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
532
|
+
},
|
|
533
|
+
[MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS]: {
|
|
534
|
+
title: 'Channel Initiate Checkouts',
|
|
535
|
+
description: 'The number of checkout initiations across all channels.',
|
|
536
|
+
sumPrefix: '',
|
|
537
|
+
sumSuffix: '',
|
|
538
|
+
avgPrefix: '',
|
|
539
|
+
avgSuffix: '',
|
|
540
|
+
icon: 'channel',
|
|
541
|
+
measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS,
|
|
542
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
543
|
+
valueType: MeasureValueType.NUMBER,
|
|
544
|
+
decimalPlaces: 0,
|
|
545
|
+
useCompactNotation: false,
|
|
546
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
547
|
+
},
|
|
548
|
+
[MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE]: {
|
|
549
|
+
title: 'Channel Initiate Checkouts Value',
|
|
550
|
+
description: 'The total value of initiated checkouts across all channels.',
|
|
551
|
+
sumPrefix: '$',
|
|
552
|
+
sumSuffix: '',
|
|
553
|
+
avgPrefix: '$',
|
|
554
|
+
avgSuffix: '',
|
|
555
|
+
icon: 'channel',
|
|
556
|
+
measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE,
|
|
557
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
558
|
+
valueType: MeasureValueType.CURRENCY,
|
|
559
|
+
decimalPlaces: 2,
|
|
560
|
+
useCompactNotation: true,
|
|
561
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
562
|
+
},
|
|
563
|
+
[MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST]: {
|
|
564
|
+
title: 'Channel Cost per Initiate Checkout',
|
|
565
|
+
description: 'The cost per checkout initiation across all channels.',
|
|
566
|
+
sumPrefix: '$',
|
|
567
|
+
sumSuffix: '',
|
|
568
|
+
avgPrefix: '$',
|
|
569
|
+
avgSuffix: '',
|
|
570
|
+
icon: 'channel',
|
|
571
|
+
measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST,
|
|
572
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
573
|
+
valueType: MeasureValueType.CURRENCY,
|
|
574
|
+
decimalPlaces: 2,
|
|
575
|
+
useCompactNotation: true,
|
|
576
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
577
|
+
},
|
|
578
|
+
[MEASURE.CHANNEL_OMNI_SEARCHES]: {
|
|
579
|
+
title: 'Channel Searches',
|
|
580
|
+
description: 'The number of searches performed across all channels.',
|
|
581
|
+
sumPrefix: '',
|
|
582
|
+
sumSuffix: '',
|
|
583
|
+
avgPrefix: '',
|
|
584
|
+
avgSuffix: '',
|
|
585
|
+
icon: 'channel',
|
|
586
|
+
measure: MEASURE.CHANNEL_OMNI_SEARCHES,
|
|
587
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
588
|
+
valueType: MeasureValueType.NUMBER,
|
|
589
|
+
decimalPlaces: 0,
|
|
590
|
+
useCompactNotation: false,
|
|
591
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
592
|
+
},
|
|
593
|
+
[MEASURE.CHANNEL_OMNI_SEARCHES_VALUE]: {
|
|
594
|
+
title: 'Channel Searches Value',
|
|
595
|
+
description: 'The total value associated with searches across all channels.',
|
|
596
|
+
sumPrefix: '$',
|
|
597
|
+
sumSuffix: '',
|
|
598
|
+
avgPrefix: '$',
|
|
599
|
+
avgSuffix: '',
|
|
600
|
+
icon: 'channel',
|
|
601
|
+
measure: MEASURE.CHANNEL_OMNI_SEARCHES_VALUE,
|
|
602
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
603
|
+
valueType: MeasureValueType.CURRENCY,
|
|
604
|
+
decimalPlaces: 2,
|
|
605
|
+
useCompactNotation: true,
|
|
606
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
607
|
+
},
|
|
608
|
+
[MEASURE.CHANNEL_OMNI_SEARCHES_COST]: {
|
|
609
|
+
title: 'Channel Cost per Search',
|
|
610
|
+
description: 'The cost per search event across all channels.',
|
|
159
611
|
sumPrefix: '$',
|
|
160
612
|
sumSuffix: '',
|
|
161
613
|
avgPrefix: '$',
|
|
162
614
|
avgSuffix: '',
|
|
163
615
|
icon: 'channel',
|
|
164
|
-
measure: MEASURE.
|
|
616
|
+
measure: MEASURE.CHANNEL_OMNI_SEARCHES_COST,
|
|
165
617
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
166
618
|
valueType: MeasureValueType.CURRENCY,
|
|
167
619
|
decimalPlaces: 2,
|
|
168
620
|
useCompactNotation: true,
|
|
169
621
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
170
622
|
},
|
|
171
|
-
[MEASURE.
|
|
172
|
-
title: '
|
|
173
|
-
description: 'The number of
|
|
623
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS]: {
|
|
624
|
+
title: 'Channel Add to Wishlists',
|
|
625
|
+
description: 'The number of times products were added to wishlists across all channels.',
|
|
174
626
|
sumPrefix: '',
|
|
175
627
|
sumSuffix: '',
|
|
176
628
|
avgPrefix: '',
|
|
177
629
|
avgSuffix: '',
|
|
178
630
|
icon: 'channel',
|
|
179
|
-
measure: MEASURE.
|
|
631
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS,
|
|
180
632
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
181
633
|
valueType: MeasureValueType.NUMBER,
|
|
182
634
|
decimalPlaces: 0,
|
|
183
635
|
useCompactNotation: false,
|
|
184
636
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
185
637
|
},
|
|
186
|
-
[MEASURE.
|
|
187
|
-
title: '
|
|
188
|
-
description: 'The total value of
|
|
189
|
-
sumPrefix: '$',
|
|
190
|
-
sumSuffix: '',
|
|
191
|
-
avgPrefix: '$',
|
|
192
|
-
avgSuffix: '',
|
|
193
|
-
icon: 'channel',
|
|
194
|
-
measure: MEASURE.CHANNEL_PURCHASES_VALUE,
|
|
195
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
196
|
-
valueType: MeasureValueType.CURRENCY,
|
|
197
|
-
decimalPlaces: 2,
|
|
198
|
-
useCompactNotation: true,
|
|
199
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
200
|
-
},
|
|
201
|
-
[MEASURE.CHANNEL_PURCHASES_COST]: {
|
|
202
|
-
title: 'Purchases Cost - Channel Reported',
|
|
203
|
-
description: 'The cost of purchases as reported by the channel.',
|
|
638
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE]: {
|
|
639
|
+
title: 'Channel Add to Wishlists Value',
|
|
640
|
+
description: 'The total value of products added to wishlists across all channels.',
|
|
204
641
|
sumPrefix: '$',
|
|
205
642
|
sumSuffix: '',
|
|
206
643
|
avgPrefix: '$',
|
|
207
644
|
avgSuffix: '',
|
|
208
645
|
icon: 'channel',
|
|
209
|
-
measure: MEASURE.
|
|
646
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE,
|
|
210
647
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
211
648
|
valueType: MeasureValueType.CURRENCY,
|
|
212
649
|
decimalPlaces: 2,
|
|
213
650
|
useCompactNotation: true,
|
|
214
651
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
215
652
|
},
|
|
216
|
-
[MEASURE.
|
|
217
|
-
title: '
|
|
218
|
-
description: 'The
|
|
653
|
+
[MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST]: {
|
|
654
|
+
title: 'Channel Cost per Add to Wishlist',
|
|
655
|
+
description: 'The cost per add to wishlist event across all channels.',
|
|
219
656
|
sumPrefix: '$',
|
|
220
657
|
sumSuffix: '',
|
|
221
658
|
avgPrefix: '$',
|
|
222
659
|
avgSuffix: '',
|
|
223
660
|
icon: 'channel',
|
|
224
|
-
measure: MEASURE.
|
|
661
|
+
measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST,
|
|
225
662
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
226
663
|
valueType: MeasureValueType.CURRENCY,
|
|
227
664
|
decimalPlaces: 2,
|
|
228
665
|
useCompactNotation: true,
|
|
229
666
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
230
667
|
},
|
|
231
|
-
[MEASURE.
|
|
232
|
-
title: '
|
|
233
|
-
description: 'The
|
|
668
|
+
[MEASURE.CHANNEL_ENGAGEMENTS]: {
|
|
669
|
+
title: 'Channel Engagements',
|
|
670
|
+
description: 'The number of engagements across all channels.',
|
|
234
671
|
sumPrefix: '',
|
|
235
|
-
sumSuffix: '
|
|
672
|
+
sumSuffix: '',
|
|
236
673
|
avgPrefix: '',
|
|
237
|
-
avgSuffix: '
|
|
674
|
+
avgSuffix: '',
|
|
238
675
|
icon: 'channel',
|
|
239
|
-
measure: MEASURE.
|
|
676
|
+
measure: MEASURE.CHANNEL_ENGAGEMENTS,
|
|
240
677
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
241
|
-
valueType: MeasureValueType.
|
|
242
|
-
decimalPlaces:
|
|
678
|
+
valueType: MeasureValueType.NUMBER,
|
|
679
|
+
decimalPlaces: 0,
|
|
243
680
|
useCompactNotation: false,
|
|
244
681
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
245
682
|
},
|
|
246
|
-
[MEASURE.
|
|
247
|
-
title: '
|
|
248
|
-
description: 'The cost per
|
|
683
|
+
[MEASURE.CHANNEL_ENGAGEMENTS_COST]: {
|
|
684
|
+
title: 'Channel Cost per Engagement',
|
|
685
|
+
description: 'The cost per engagement across all channels.',
|
|
249
686
|
sumPrefix: '$',
|
|
250
687
|
sumSuffix: '',
|
|
251
688
|
avgPrefix: '$',
|
|
252
689
|
avgSuffix: '',
|
|
253
690
|
icon: 'channel',
|
|
254
|
-
measure: MEASURE.
|
|
691
|
+
measure: MEASURE.CHANNEL_ENGAGEMENTS_COST,
|
|
255
692
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
256
693
|
valueType: MeasureValueType.CURRENCY,
|
|
257
694
|
decimalPlaces: 2,
|
|
258
695
|
useCompactNotation: true,
|
|
259
696
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
260
697
|
},
|
|
261
|
-
[MEASURE.
|
|
262
|
-
title: '
|
|
263
|
-
description: 'The
|
|
698
|
+
[MEASURE.CHANNEL_ENGAGEMENT_RATE]: {
|
|
699
|
+
title: 'Channel Engagement Rate',
|
|
700
|
+
description: 'The percentage of impressions that resulted in engagements across all channels.',
|
|
264
701
|
sumPrefix: '',
|
|
265
|
-
sumSuffix: '
|
|
702
|
+
sumSuffix: '%',
|
|
266
703
|
avgPrefix: '',
|
|
267
|
-
avgSuffix: '
|
|
704
|
+
avgSuffix: '%',
|
|
268
705
|
icon: 'channel',
|
|
269
|
-
measure: MEASURE.
|
|
706
|
+
measure: MEASURE.CHANNEL_ENGAGEMENT_RATE,
|
|
270
707
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
271
|
-
valueType: MeasureValueType.
|
|
708
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
272
709
|
decimalPlaces: 2,
|
|
273
710
|
useCompactNotation: false,
|
|
274
711
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
275
712
|
},
|
|
276
|
-
[MEASURE.
|
|
277
|
-
title: '
|
|
278
|
-
description: 'The number of
|
|
713
|
+
[MEASURE.CHANNEL_SHARES]: {
|
|
714
|
+
title: 'Channel Shares',
|
|
715
|
+
description: 'The number of shares across all channels.',
|
|
279
716
|
sumPrefix: '',
|
|
280
717
|
sumSuffix: '',
|
|
281
718
|
avgPrefix: '',
|
|
282
719
|
avgSuffix: '',
|
|
283
720
|
icon: 'channel',
|
|
284
|
-
measure: MEASURE.
|
|
721
|
+
measure: MEASURE.CHANNEL_SHARES,
|
|
285
722
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
286
723
|
valueType: MeasureValueType.NUMBER,
|
|
287
724
|
decimalPlaces: 0,
|
|
288
725
|
useCompactNotation: false,
|
|
289
726
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
290
727
|
},
|
|
291
|
-
[MEASURE.
|
|
292
|
-
title: 'Cost
|
|
293
|
-
description: 'The
|
|
728
|
+
[MEASURE.CHANNEL_SHARES_COST]: {
|
|
729
|
+
title: 'Channel Cost per Share',
|
|
730
|
+
description: 'The cost per share across all channels.',
|
|
294
731
|
sumPrefix: '$',
|
|
295
732
|
sumSuffix: '',
|
|
296
733
|
avgPrefix: '$',
|
|
297
734
|
avgSuffix: '',
|
|
298
735
|
icon: 'channel',
|
|
299
|
-
measure: MEASURE.
|
|
736
|
+
measure: MEASURE.CHANNEL_SHARES_COST,
|
|
300
737
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
301
738
|
valueType: MeasureValueType.CURRENCY,
|
|
302
739
|
decimalPlaces: 2,
|
|
303
740
|
useCompactNotation: true,
|
|
304
741
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
305
742
|
},
|
|
306
|
-
[MEASURE.
|
|
307
|
-
title: '
|
|
308
|
-
description: 'The number of
|
|
743
|
+
[MEASURE.CHANNEL_REACTIONS]: {
|
|
744
|
+
title: 'Channel Reactions',
|
|
745
|
+
description: 'The number of reactions across all channels.',
|
|
309
746
|
sumPrefix: '',
|
|
310
747
|
sumSuffix: '',
|
|
311
748
|
avgPrefix: '',
|
|
312
749
|
avgSuffix: '',
|
|
313
750
|
icon: 'channel',
|
|
314
|
-
measure: MEASURE.
|
|
751
|
+
measure: MEASURE.CHANNEL_REACTIONS,
|
|
315
752
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
316
753
|
valueType: MeasureValueType.NUMBER,
|
|
317
754
|
decimalPlaces: 0,
|
|
318
755
|
useCompactNotation: false,
|
|
319
756
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
320
757
|
},
|
|
321
|
-
[MEASURE.
|
|
322
|
-
title: 'Cost
|
|
323
|
-
description: 'The
|
|
758
|
+
[MEASURE.CHANNEL_REACTIONS_COST]: {
|
|
759
|
+
title: 'Channel Cost per Reaction',
|
|
760
|
+
description: 'The cost per reaction across all channels.',
|
|
324
761
|
sumPrefix: '$',
|
|
325
762
|
sumSuffix: '',
|
|
326
763
|
avgPrefix: '$',
|
|
327
764
|
avgSuffix: '',
|
|
328
765
|
icon: 'channel',
|
|
329
|
-
measure: MEASURE.
|
|
766
|
+
measure: MEASURE.CHANNEL_REACTIONS_COST,
|
|
330
767
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
331
768
|
valueType: MeasureValueType.CURRENCY,
|
|
332
769
|
decimalPlaces: 2,
|
|
333
770
|
useCompactNotation: true,
|
|
334
771
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
335
772
|
},
|
|
336
|
-
[MEASURE.
|
|
337
|
-
title: '
|
|
338
|
-
description: 'The
|
|
339
|
-
sumPrefix: '',
|
|
340
|
-
sumSuffix: '%',
|
|
341
|
-
avgPrefix: '',
|
|
342
|
-
avgSuffix: '%',
|
|
343
|
-
icon: 'channel',
|
|
344
|
-
measure: MEASURE.CHANNEL_INLINE_CLICK_CTR,
|
|
345
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
346
|
-
valueType: MeasureValueType.PERCENTAGE,
|
|
347
|
-
decimalPlaces: 2,
|
|
348
|
-
useCompactNotation: false,
|
|
349
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
350
|
-
},
|
|
351
|
-
[MEASURE.CHANNEL_OUTBOUND_CLICKS]: {
|
|
352
|
-
title: 'Outbound Clicks - Channel Reported',
|
|
353
|
-
description: 'The number of outbound clicks as reported by the channel.',
|
|
773
|
+
[MEASURE.CHANNEL_LIKES]: {
|
|
774
|
+
title: 'Channel Likes',
|
|
775
|
+
description: 'The number of likes across all channels.',
|
|
354
776
|
sumPrefix: '',
|
|
355
777
|
sumSuffix: '',
|
|
356
778
|
avgPrefix: '',
|
|
357
779
|
avgSuffix: '',
|
|
358
780
|
icon: 'channel',
|
|
359
|
-
measure: MEASURE.
|
|
781
|
+
measure: MEASURE.CHANNEL_LIKES,
|
|
360
782
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
361
783
|
valueType: MeasureValueType.NUMBER,
|
|
362
784
|
decimalPlaces: 0,
|
|
363
785
|
useCompactNotation: false,
|
|
364
786
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
365
787
|
},
|
|
366
|
-
[MEASURE.
|
|
367
|
-
title: 'Cost
|
|
368
|
-
description: 'The
|
|
788
|
+
[MEASURE.CHANNEL_LIKES_COST]: {
|
|
789
|
+
title: 'Channel Cost per Like',
|
|
790
|
+
description: 'The cost per like across all channels.',
|
|
369
791
|
sumPrefix: '$',
|
|
370
792
|
sumSuffix: '',
|
|
371
793
|
avgPrefix: '$',
|
|
372
794
|
avgSuffix: '',
|
|
373
795
|
icon: 'channel',
|
|
374
|
-
measure: MEASURE.
|
|
796
|
+
measure: MEASURE.CHANNEL_LIKES_COST,
|
|
375
797
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
376
798
|
valueType: MeasureValueType.CURRENCY,
|
|
377
799
|
decimalPlaces: 2,
|
|
378
800
|
useCompactNotation: true,
|
|
379
801
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
380
802
|
},
|
|
381
|
-
[MEASURE.
|
|
382
|
-
title: '
|
|
383
|
-
description: 'The
|
|
384
|
-
sumPrefix: '',
|
|
385
|
-
sumSuffix: '%',
|
|
386
|
-
avgPrefix: '',
|
|
387
|
-
avgSuffix: '%',
|
|
388
|
-
icon: 'channel',
|
|
389
|
-
measure: MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR,
|
|
390
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
391
|
-
valueType: MeasureValueType.PERCENTAGE,
|
|
392
|
-
decimalPlaces: 2,
|
|
393
|
-
useCompactNotation: false,
|
|
394
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
395
|
-
},
|
|
396
|
-
[MEASURE.CHANNEL_OMNI_VIEW_CONTENTS]: {
|
|
397
|
-
title: 'View Contents - Channel Reported',
|
|
398
|
-
description: 'The number of times content was viewed as reported by the channel.',
|
|
803
|
+
[MEASURE.CHANNEL_COMMENTS]: {
|
|
804
|
+
title: 'Channel Comments',
|
|
805
|
+
description: 'The number of comments across all channels.',
|
|
399
806
|
sumPrefix: '',
|
|
400
807
|
sumSuffix: '',
|
|
401
808
|
avgPrefix: '',
|
|
402
809
|
avgSuffix: '',
|
|
403
810
|
icon: 'channel',
|
|
404
|
-
measure: MEASURE.
|
|
811
|
+
measure: MEASURE.CHANNEL_COMMENTS,
|
|
405
812
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
406
813
|
valueType: MeasureValueType.NUMBER,
|
|
407
814
|
decimalPlaces: 0,
|
|
408
815
|
useCompactNotation: false,
|
|
409
816
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
410
817
|
},
|
|
411
|
-
[MEASURE.
|
|
412
|
-
title: '
|
|
413
|
-
description: 'The
|
|
818
|
+
[MEASURE.CHANNEL_COMMENTS_COST]: {
|
|
819
|
+
title: 'Channel Cost per Comment',
|
|
820
|
+
description: 'The cost per comment across all channels.',
|
|
414
821
|
sumPrefix: '$',
|
|
415
822
|
sumSuffix: '',
|
|
416
823
|
avgPrefix: '$',
|
|
417
824
|
avgSuffix: '',
|
|
418
825
|
icon: 'channel',
|
|
419
|
-
measure: MEASURE.
|
|
826
|
+
measure: MEASURE.CHANNEL_COMMENTS_COST,
|
|
420
827
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
421
828
|
valueType: MeasureValueType.CURRENCY,
|
|
422
829
|
decimalPlaces: 2,
|
|
423
830
|
useCompactNotation: true,
|
|
424
831
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
425
832
|
},
|
|
426
|
-
[MEASURE.
|
|
427
|
-
title: '
|
|
428
|
-
description: 'The
|
|
833
|
+
[MEASURE.CHANNEL_SAVES]: {
|
|
834
|
+
title: 'Channel Saves',
|
|
835
|
+
description: 'The number of saves across all channels.',
|
|
836
|
+
sumPrefix: '',
|
|
837
|
+
sumSuffix: '',
|
|
838
|
+
avgPrefix: '',
|
|
839
|
+
avgSuffix: '',
|
|
840
|
+
icon: 'channel',
|
|
841
|
+
measure: MEASURE.CHANNEL_SAVES,
|
|
842
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
843
|
+
valueType: MeasureValueType.NUMBER,
|
|
844
|
+
decimalPlaces: 0,
|
|
845
|
+
useCompactNotation: false,
|
|
846
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
847
|
+
},
|
|
848
|
+
[MEASURE.CHANNEL_SAVES_COST]: {
|
|
849
|
+
title: 'Channel Cost per Save',
|
|
850
|
+
description: 'The cost per save across all channels.',
|
|
429
851
|
sumPrefix: '$',
|
|
430
852
|
sumSuffix: '',
|
|
431
853
|
avgPrefix: '$',
|
|
432
854
|
avgSuffix: '',
|
|
433
855
|
icon: 'channel',
|
|
434
|
-
measure: MEASURE.
|
|
856
|
+
measure: MEASURE.CHANNEL_SAVES_COST,
|
|
435
857
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
436
858
|
valueType: MeasureValueType.CURRENCY,
|
|
437
859
|
decimalPlaces: 2,
|
|
438
860
|
useCompactNotation: true,
|
|
439
861
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
440
862
|
},
|
|
441
|
-
[MEASURE.
|
|
442
|
-
title: '
|
|
443
|
-
description: 'The number of
|
|
863
|
+
[MEASURE.CHANNEL_LANDING_PAGE_VIEWS]: {
|
|
864
|
+
title: 'Channel Landing Page Views',
|
|
865
|
+
description: 'The number of landing page views across all channels.',
|
|
444
866
|
sumPrefix: '',
|
|
445
867
|
sumSuffix: '',
|
|
446
868
|
avgPrefix: '',
|
|
447
869
|
avgSuffix: '',
|
|
448
870
|
icon: 'channel',
|
|
449
|
-
measure: MEASURE.
|
|
871
|
+
measure: MEASURE.CHANNEL_LANDING_PAGE_VIEWS,
|
|
450
872
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
451
873
|
valueType: MeasureValueType.NUMBER,
|
|
452
874
|
decimalPlaces: 0,
|
|
453
875
|
useCompactNotation: false,
|
|
454
876
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
455
877
|
},
|
|
456
|
-
[MEASURE.
|
|
457
|
-
title: '
|
|
458
|
-
description: 'The
|
|
878
|
+
[MEASURE.CHANNEL_LANDING_PAGE_VIEWS_COST]: {
|
|
879
|
+
title: 'Channel Cost per Landing Page View',
|
|
880
|
+
description: 'The cost per landing page view across all channels.',
|
|
459
881
|
sumPrefix: '$',
|
|
460
882
|
sumSuffix: '',
|
|
461
883
|
avgPrefix: '$',
|
|
462
884
|
avgSuffix: '',
|
|
463
885
|
icon: 'channel',
|
|
464
|
-
measure: MEASURE.
|
|
886
|
+
measure: MEASURE.CHANNEL_LANDING_PAGE_VIEWS_COST,
|
|
465
887
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
466
888
|
valueType: MeasureValueType.CURRENCY,
|
|
467
889
|
decimalPlaces: 2,
|
|
468
890
|
useCompactNotation: true,
|
|
469
891
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
470
892
|
},
|
|
471
|
-
[MEASURE.
|
|
472
|
-
title: '
|
|
473
|
-
description: 'The
|
|
474
|
-
sumPrefix: '
|
|
475
|
-
sumSuffix: '',
|
|
476
|
-
avgPrefix: '
|
|
477
|
-
avgSuffix: '',
|
|
893
|
+
[MEASURE.CHANNEL_LANDING_PAGE_VIEW_RATE]: {
|
|
894
|
+
title: 'Channel Landing Page View Rate',
|
|
895
|
+
description: 'The percentage of clicks that resulted in landing page views across all channels.',
|
|
896
|
+
sumPrefix: '',
|
|
897
|
+
sumSuffix: '%',
|
|
898
|
+
avgPrefix: '',
|
|
899
|
+
avgSuffix: '%',
|
|
478
900
|
icon: 'channel',
|
|
479
|
-
measure: MEASURE.
|
|
901
|
+
measure: MEASURE.CHANNEL_LANDING_PAGE_VIEW_RATE,
|
|
480
902
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
481
|
-
valueType: MeasureValueType.
|
|
903
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
482
904
|
decimalPlaces: 2,
|
|
483
|
-
useCompactNotation:
|
|
905
|
+
useCompactNotation: false,
|
|
484
906
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
485
907
|
},
|
|
486
|
-
[MEASURE.
|
|
487
|
-
title: '
|
|
488
|
-
description: 'The number of
|
|
908
|
+
[MEASURE.CHANNEL_LEADS]: {
|
|
909
|
+
title: 'Channel Leads',
|
|
910
|
+
description: 'The number of leads generated across all channels.',
|
|
489
911
|
sumPrefix: '',
|
|
490
912
|
sumSuffix: '',
|
|
491
913
|
avgPrefix: '',
|
|
492
914
|
avgSuffix: '',
|
|
493
915
|
icon: 'channel',
|
|
494
|
-
measure: MEASURE.
|
|
916
|
+
measure: MEASURE.CHANNEL_LEADS,
|
|
495
917
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
496
918
|
valueType: MeasureValueType.NUMBER,
|
|
497
919
|
decimalPlaces: 0,
|
|
498
920
|
useCompactNotation: false,
|
|
499
921
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
500
922
|
},
|
|
501
|
-
[MEASURE.
|
|
502
|
-
title: '
|
|
503
|
-
description: 'The total value of
|
|
923
|
+
[MEASURE.CHANNEL_LEADS_VALUE]: {
|
|
924
|
+
title: 'Channel Leads Value',
|
|
925
|
+
description: 'The total value of leads generated across all channels.',
|
|
504
926
|
sumPrefix: '$',
|
|
505
927
|
sumSuffix: '',
|
|
506
928
|
avgPrefix: '$',
|
|
507
929
|
avgSuffix: '',
|
|
508
930
|
icon: 'channel',
|
|
509
|
-
measure: MEASURE.
|
|
931
|
+
measure: MEASURE.CHANNEL_LEADS_VALUE,
|
|
510
932
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
511
933
|
valueType: MeasureValueType.CURRENCY,
|
|
512
934
|
decimalPlaces: 2,
|
|
513
935
|
useCompactNotation: true,
|
|
514
936
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
515
937
|
},
|
|
516
|
-
[MEASURE.
|
|
517
|
-
title: '
|
|
518
|
-
description: 'The cost
|
|
938
|
+
[MEASURE.CHANNEL_LEADS_COST]: {
|
|
939
|
+
title: 'Channel Cost per Lead',
|
|
940
|
+
description: 'The cost per lead generated across all channels.',
|
|
519
941
|
sumPrefix: '$',
|
|
520
942
|
sumSuffix: '',
|
|
521
943
|
avgPrefix: '$',
|
|
522
944
|
avgSuffix: '',
|
|
523
945
|
icon: 'channel',
|
|
524
|
-
measure: MEASURE.
|
|
946
|
+
measure: MEASURE.CHANNEL_LEADS_COST,
|
|
525
947
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
526
948
|
valueType: MeasureValueType.CURRENCY,
|
|
527
949
|
decimalPlaces: 2,
|
|
528
950
|
useCompactNotation: true,
|
|
529
951
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
530
952
|
},
|
|
531
|
-
[MEASURE.
|
|
532
|
-
title: '
|
|
533
|
-
description: 'The number of
|
|
953
|
+
[MEASURE.CHANNEL_APPOINTMENTS]: {
|
|
954
|
+
title: 'Channel Appointments',
|
|
955
|
+
description: 'The number of appointments scheduled across all channels.',
|
|
534
956
|
sumPrefix: '',
|
|
535
957
|
sumSuffix: '',
|
|
536
958
|
avgPrefix: '',
|
|
537
959
|
avgSuffix: '',
|
|
538
960
|
icon: 'channel',
|
|
539
|
-
measure: MEASURE.
|
|
961
|
+
measure: MEASURE.CHANNEL_APPOINTMENTS,
|
|
540
962
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
541
963
|
valueType: MeasureValueType.NUMBER,
|
|
542
964
|
decimalPlaces: 0,
|
|
543
965
|
useCompactNotation: false,
|
|
544
966
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
545
967
|
},
|
|
546
|
-
[MEASURE.
|
|
547
|
-
title: '
|
|
548
|
-
description: 'The total value of
|
|
968
|
+
[MEASURE.CHANNEL_APPOINTMENTS_VALUE]: {
|
|
969
|
+
title: 'Channel Appointments Value',
|
|
970
|
+
description: 'The total value of appointments scheduled across all channels.',
|
|
549
971
|
sumPrefix: '$',
|
|
550
972
|
sumSuffix: '',
|
|
551
973
|
avgPrefix: '$',
|
|
552
974
|
avgSuffix: '',
|
|
553
975
|
icon: 'channel',
|
|
554
|
-
measure: MEASURE.
|
|
976
|
+
measure: MEASURE.CHANNEL_APPOINTMENTS_VALUE,
|
|
555
977
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
556
978
|
valueType: MeasureValueType.CURRENCY,
|
|
557
979
|
decimalPlaces: 2,
|
|
558
980
|
useCompactNotation: true,
|
|
559
981
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
560
982
|
},
|
|
561
|
-
[MEASURE.
|
|
562
|
-
title: '
|
|
563
|
-
description: 'The cost
|
|
983
|
+
[MEASURE.CHANNEL_APPOINTMENTS_COST]: {
|
|
984
|
+
title: 'Channel Cost per Appointment',
|
|
985
|
+
description: 'The cost per appointment scheduled across all channels.',
|
|
564
986
|
sumPrefix: '$',
|
|
565
987
|
sumSuffix: '',
|
|
566
988
|
avgPrefix: '$',
|
|
567
989
|
avgSuffix: '',
|
|
568
990
|
icon: 'channel',
|
|
569
|
-
measure: MEASURE.
|
|
991
|
+
measure: MEASURE.CHANNEL_APPOINTMENTS_COST,
|
|
570
992
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
571
993
|
valueType: MeasureValueType.CURRENCY,
|
|
572
994
|
decimalPlaces: 2,
|
|
573
995
|
useCompactNotation: true,
|
|
574
996
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
575
997
|
},
|
|
576
|
-
[MEASURE.
|
|
577
|
-
title: '
|
|
578
|
-
description: 'The number of
|
|
998
|
+
[MEASURE.CHANNEL_SUBSCRIBERS]: {
|
|
999
|
+
title: 'Channel Subscriptions',
|
|
1000
|
+
description: 'The number of subscription sign-ups across all channels.',
|
|
579
1001
|
sumPrefix: '',
|
|
580
1002
|
sumSuffix: '',
|
|
581
1003
|
avgPrefix: '',
|
|
582
1004
|
avgSuffix: '',
|
|
583
1005
|
icon: 'channel',
|
|
584
|
-
measure: MEASURE.
|
|
1006
|
+
measure: MEASURE.CHANNEL_SUBSCRIBERS,
|
|
585
1007
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
586
1008
|
valueType: MeasureValueType.NUMBER,
|
|
587
1009
|
decimalPlaces: 0,
|
|
588
1010
|
useCompactNotation: false,
|
|
589
1011
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
590
1012
|
},
|
|
591
|
-
[MEASURE.
|
|
592
|
-
title: '
|
|
593
|
-
description: 'The total value of
|
|
1013
|
+
[MEASURE.CHANNEL_SUBSCRIBERS_VALUE]: {
|
|
1014
|
+
title: 'Channel Subscriptions Value',
|
|
1015
|
+
description: 'The total value of subscriptions across all channels.',
|
|
594
1016
|
sumPrefix: '$',
|
|
595
1017
|
sumSuffix: '',
|
|
596
1018
|
avgPrefix: '$',
|
|
597
1019
|
avgSuffix: '',
|
|
598
1020
|
icon: 'channel',
|
|
599
|
-
measure: MEASURE.
|
|
1021
|
+
measure: MEASURE.CHANNEL_SUBSCRIBERS_VALUE,
|
|
600
1022
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
601
1023
|
valueType: MeasureValueType.CURRENCY,
|
|
602
1024
|
decimalPlaces: 2,
|
|
603
1025
|
useCompactNotation: true,
|
|
604
1026
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
605
1027
|
},
|
|
606
|
-
[MEASURE.
|
|
607
|
-
title: '
|
|
608
|
-
description: 'The cost
|
|
1028
|
+
[MEASURE.CHANNEL_SUBSCRIBERS_COST]: {
|
|
1029
|
+
title: 'Channel Cost per Subscription',
|
|
1030
|
+
description: 'The cost per subscription sign-up across all channels.',
|
|
609
1031
|
sumPrefix: '$',
|
|
610
1032
|
sumSuffix: '',
|
|
611
1033
|
avgPrefix: '$',
|
|
612
1034
|
avgSuffix: '',
|
|
613
1035
|
icon: 'channel',
|
|
614
|
-
measure: MEASURE.
|
|
1036
|
+
measure: MEASURE.CHANNEL_SUBSCRIBERS_COST,
|
|
615
1037
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
616
1038
|
valueType: MeasureValueType.CURRENCY,
|
|
617
1039
|
decimalPlaces: 2,
|
|
618
1040
|
useCompactNotation: true,
|
|
619
1041
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
620
1042
|
},
|
|
621
|
-
[MEASURE.
|
|
622
|
-
title: '
|
|
623
|
-
description: 'The number of
|
|
1043
|
+
[MEASURE.CHANNEL_START_TRIALS]: {
|
|
1044
|
+
title: 'Channel Trial Starts',
|
|
1045
|
+
description: 'The number of trial starts across all channels.',
|
|
624
1046
|
sumPrefix: '',
|
|
625
1047
|
sumSuffix: '',
|
|
626
1048
|
avgPrefix: '',
|
|
627
1049
|
avgSuffix: '',
|
|
628
1050
|
icon: 'channel',
|
|
629
|
-
measure: MEASURE.
|
|
1051
|
+
measure: MEASURE.CHANNEL_START_TRIALS,
|
|
630
1052
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
631
1053
|
valueType: MeasureValueType.NUMBER,
|
|
632
1054
|
decimalPlaces: 0,
|
|
633
1055
|
useCompactNotation: false,
|
|
634
1056
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
635
1057
|
},
|
|
636
|
-
[MEASURE.
|
|
637
|
-
title: '
|
|
638
|
-
description: 'The total value of
|
|
1058
|
+
[MEASURE.CHANNEL_START_TRIALS_VALUE]: {
|
|
1059
|
+
title: 'Channel Trial Starts Value',
|
|
1060
|
+
description: 'The total value of trial starts across all channels.',
|
|
639
1061
|
sumPrefix: '$',
|
|
640
1062
|
sumSuffix: '',
|
|
641
1063
|
avgPrefix: '$',
|
|
642
1064
|
avgSuffix: '',
|
|
643
1065
|
icon: 'channel',
|
|
644
|
-
measure: MEASURE.
|
|
1066
|
+
measure: MEASURE.CHANNEL_START_TRIALS_VALUE,
|
|
645
1067
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
646
1068
|
valueType: MeasureValueType.CURRENCY,
|
|
647
1069
|
decimalPlaces: 2,
|
|
648
1070
|
useCompactNotation: true,
|
|
649
1071
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
650
1072
|
},
|
|
651
|
-
[MEASURE.
|
|
652
|
-
title: '
|
|
653
|
-
description: 'The cost
|
|
1073
|
+
[MEASURE.CHANNEL_START_TRIALS_COST]: {
|
|
1074
|
+
title: 'Channel Cost per Trial Start',
|
|
1075
|
+
description: 'The cost per trial start across all channels.',
|
|
654
1076
|
sumPrefix: '$',
|
|
655
1077
|
sumSuffix: '',
|
|
656
1078
|
avgPrefix: '$',
|
|
657
1079
|
avgSuffix: '',
|
|
658
1080
|
icon: 'channel',
|
|
659
|
-
measure: MEASURE.
|
|
1081
|
+
measure: MEASURE.CHANNEL_START_TRIALS_COST,
|
|
660
1082
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
661
1083
|
valueType: MeasureValueType.CURRENCY,
|
|
662
1084
|
decimalPlaces: 2,
|
|
663
1085
|
useCompactNotation: true,
|
|
664
1086
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
665
1087
|
},
|
|
666
|
-
[MEASURE.
|
|
667
|
-
title: '
|
|
668
|
-
description: 'The number of
|
|
1088
|
+
[MEASURE.CHANNEL_SUBMIT_APPLICATIONS]: {
|
|
1089
|
+
title: 'Channel Application Submissions',
|
|
1090
|
+
description: 'The number of application submissions across all channels.',
|
|
669
1091
|
sumPrefix: '',
|
|
670
1092
|
sumSuffix: '',
|
|
671
1093
|
avgPrefix: '',
|
|
672
1094
|
avgSuffix: '',
|
|
673
1095
|
icon: 'channel',
|
|
674
|
-
measure: MEASURE.
|
|
1096
|
+
measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS,
|
|
675
1097
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
676
1098
|
valueType: MeasureValueType.NUMBER,
|
|
677
1099
|
decimalPlaces: 0,
|
|
678
1100
|
useCompactNotation: false,
|
|
679
1101
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
680
1102
|
},
|
|
681
|
-
[MEASURE.
|
|
682
|
-
title: '
|
|
683
|
-
description: 'The total value of
|
|
1103
|
+
[MEASURE.CHANNEL_SUBMIT_APPLICATIONS_VALUE]: {
|
|
1104
|
+
title: 'Channel Application Submissions Value',
|
|
1105
|
+
description: 'The total value of application submissions across all channels.',
|
|
684
1106
|
sumPrefix: '$',
|
|
685
1107
|
sumSuffix: '',
|
|
686
1108
|
avgPrefix: '$',
|
|
687
1109
|
avgSuffix: '',
|
|
688
1110
|
icon: 'channel',
|
|
689
|
-
measure: MEASURE.
|
|
1111
|
+
measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS_VALUE,
|
|
690
1112
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
691
1113
|
valueType: MeasureValueType.CURRENCY,
|
|
692
1114
|
decimalPlaces: 2,
|
|
693
1115
|
useCompactNotation: true,
|
|
694
1116
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
695
1117
|
},
|
|
696
|
-
[MEASURE.
|
|
697
|
-
title: '
|
|
698
|
-
description: 'The cost
|
|
1118
|
+
[MEASURE.CHANNEL_SUBMIT_APPLICATIONS_COST]: {
|
|
1119
|
+
title: 'Channel Cost per Application Submission',
|
|
1120
|
+
description: 'The cost per application submission across all channels.',
|
|
699
1121
|
sumPrefix: '$',
|
|
700
1122
|
sumSuffix: '',
|
|
701
1123
|
avgPrefix: '$',
|
|
702
1124
|
avgSuffix: '',
|
|
703
1125
|
icon: 'channel',
|
|
704
|
-
measure: MEASURE.
|
|
1126
|
+
measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS_COST,
|
|
705
1127
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
706
1128
|
valueType: MeasureValueType.CURRENCY,
|
|
707
1129
|
decimalPlaces: 2,
|
|
708
1130
|
useCompactNotation: true,
|
|
709
1131
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
710
1132
|
},
|
|
711
|
-
[MEASURE.
|
|
712
|
-
title: '
|
|
713
|
-
description: 'The number of
|
|
1133
|
+
[MEASURE.CHANNEL_APP_INSTALLS]: {
|
|
1134
|
+
title: 'Channel App Installs',
|
|
1135
|
+
description: 'The number of app installs across all channels.',
|
|
714
1136
|
sumPrefix: '',
|
|
715
1137
|
sumSuffix: '',
|
|
716
1138
|
avgPrefix: '',
|
|
717
1139
|
avgSuffix: '',
|
|
718
1140
|
icon: 'channel',
|
|
719
|
-
measure: MEASURE.
|
|
1141
|
+
measure: MEASURE.CHANNEL_APP_INSTALLS,
|
|
720
1142
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
721
1143
|
valueType: MeasureValueType.NUMBER,
|
|
722
1144
|
decimalPlaces: 0,
|
|
723
1145
|
useCompactNotation: false,
|
|
724
1146
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
725
1147
|
},
|
|
726
|
-
[MEASURE.
|
|
727
|
-
title: '
|
|
728
|
-
description: 'The total value of
|
|
1148
|
+
[MEASURE.CHANNEL_APP_INSTALLS_VALUE]: {
|
|
1149
|
+
title: 'Channel App Installs Value',
|
|
1150
|
+
description: 'The total value of app installs across all channels.',
|
|
729
1151
|
sumPrefix: '$',
|
|
730
1152
|
sumSuffix: '',
|
|
731
1153
|
avgPrefix: '$',
|
|
732
1154
|
avgSuffix: '',
|
|
733
1155
|
icon: 'channel',
|
|
734
|
-
measure: MEASURE.
|
|
1156
|
+
measure: MEASURE.CHANNEL_APP_INSTALLS_VALUE,
|
|
735
1157
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
736
1158
|
valueType: MeasureValueType.CURRENCY,
|
|
737
1159
|
decimalPlaces: 2,
|
|
738
1160
|
useCompactNotation: true,
|
|
739
1161
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
740
1162
|
},
|
|
741
|
-
[MEASURE.
|
|
742
|
-
title: '
|
|
743
|
-
description: 'The cost
|
|
1163
|
+
[MEASURE.CHANNEL_APP_INSTALLS_COST]: {
|
|
1164
|
+
title: 'Channel Cost per App Install',
|
|
1165
|
+
description: 'The cost per app install across all channels.',
|
|
744
1166
|
sumPrefix: '$',
|
|
745
1167
|
sumSuffix: '',
|
|
746
1168
|
avgPrefix: '$',
|
|
747
1169
|
avgSuffix: '',
|
|
748
1170
|
icon: 'channel',
|
|
749
|
-
measure: MEASURE.
|
|
1171
|
+
measure: MEASURE.CHANNEL_APP_INSTALLS_COST,
|
|
750
1172
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
751
1173
|
valueType: MeasureValueType.CURRENCY,
|
|
752
1174
|
decimalPlaces: 2,
|
|
753
1175
|
useCompactNotation: true,
|
|
754
1176
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
755
1177
|
},
|
|
756
|
-
[MEASURE.
|
|
757
|
-
title: '
|
|
758
|
-
description: 'The number of
|
|
759
|
-
sumPrefix: '',
|
|
760
|
-
sumSuffix: '',
|
|
761
|
-
avgPrefix: '',
|
|
762
|
-
avgSuffix: '',
|
|
763
|
-
icon: 'channel',
|
|
764
|
-
measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS,
|
|
765
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
766
|
-
valueType: MeasureValueType.NUMBER,
|
|
767
|
-
decimalPlaces: 0,
|
|
768
|
-
useCompactNotation: false,
|
|
769
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
770
|
-
},
|
|
771
|
-
[MEASURE.CHANNEL_LEADS]: {
|
|
772
|
-
title: 'Leads - Channel Reported',
|
|
773
|
-
description: 'The number of leads as reported by the channel.',
|
|
1178
|
+
[MEASURE.CHANNEL_COMPLETE_REGISTRATIONS]: {
|
|
1179
|
+
title: 'Channel Completed Registrations',
|
|
1180
|
+
description: 'The number of completed registrations across all channels.',
|
|
774
1181
|
sumPrefix: '',
|
|
775
1182
|
sumSuffix: '',
|
|
776
1183
|
avgPrefix: '',
|
|
777
1184
|
avgSuffix: '',
|
|
778
1185
|
icon: 'channel',
|
|
779
|
-
measure: MEASURE.
|
|
1186
|
+
measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS,
|
|
780
1187
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
781
1188
|
valueType: MeasureValueType.NUMBER,
|
|
782
1189
|
decimalPlaces: 0,
|
|
783
1190
|
useCompactNotation: false,
|
|
784
1191
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
785
1192
|
},
|
|
786
|
-
[MEASURE.
|
|
787
|
-
title: '
|
|
788
|
-
description: 'The total value of
|
|
1193
|
+
[MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_VALUE]: {
|
|
1194
|
+
title: 'Channel Completed Registrations Value',
|
|
1195
|
+
description: 'The total value of completed registrations across all channels.',
|
|
789
1196
|
sumPrefix: '$',
|
|
790
1197
|
sumSuffix: '',
|
|
791
1198
|
avgPrefix: '$',
|
|
792
1199
|
avgSuffix: '',
|
|
793
1200
|
icon: 'channel',
|
|
794
|
-
measure: MEASURE.
|
|
1201
|
+
measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_VALUE,
|
|
795
1202
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
796
1203
|
valueType: MeasureValueType.CURRENCY,
|
|
797
1204
|
decimalPlaces: 2,
|
|
798
1205
|
useCompactNotation: true,
|
|
799
1206
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
800
1207
|
},
|
|
801
|
-
[MEASURE.
|
|
802
|
-
title: '
|
|
803
|
-
description: 'The cost
|
|
1208
|
+
[MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_COST]: {
|
|
1209
|
+
title: 'Channel Cost per Completed Registration',
|
|
1210
|
+
description: 'The cost per completed registration across all channels.',
|
|
804
1211
|
sumPrefix: '$',
|
|
805
1212
|
sumSuffix: '',
|
|
806
1213
|
avgPrefix: '$',
|
|
807
1214
|
avgSuffix: '',
|
|
808
1215
|
icon: 'channel',
|
|
809
|
-
measure: MEASURE.
|
|
1216
|
+
measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_COST,
|
|
810
1217
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
811
1218
|
valueType: MeasureValueType.CURRENCY,
|
|
812
1219
|
decimalPlaces: 2,
|
|
813
1220
|
useCompactNotation: true,
|
|
814
1221
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
815
1222
|
},
|
|
816
|
-
[MEASURE.
|
|
817
|
-
title: '
|
|
818
|
-
description: 'The number of
|
|
1223
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS]: {
|
|
1224
|
+
title: 'Channel Video Views',
|
|
1225
|
+
description: 'The number of video views across all channels.',
|
|
819
1226
|
sumPrefix: '',
|
|
820
1227
|
sumSuffix: '',
|
|
821
1228
|
avgPrefix: '',
|
|
822
1229
|
avgSuffix: '',
|
|
823
1230
|
icon: 'channel',
|
|
824
|
-
measure: MEASURE.
|
|
1231
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS,
|
|
825
1232
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
826
1233
|
valueType: MeasureValueType.NUMBER,
|
|
827
1234
|
decimalPlaces: 0,
|
|
828
1235
|
useCompactNotation: false,
|
|
829
1236
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
830
1237
|
},
|
|
831
|
-
[MEASURE.
|
|
832
|
-
title: '
|
|
833
|
-
description: 'The
|
|
1238
|
+
[MEASURE.CHANNEL_CPV]: {
|
|
1239
|
+
title: 'Channel CPV',
|
|
1240
|
+
description: 'The cost per video view across all channels.',
|
|
834
1241
|
sumPrefix: '$',
|
|
835
1242
|
sumSuffix: '',
|
|
836
1243
|
avgPrefix: '$',
|
|
837
1244
|
avgSuffix: '',
|
|
838
1245
|
icon: 'channel',
|
|
839
|
-
measure: MEASURE.
|
|
1246
|
+
measure: MEASURE.CHANNEL_CPV,
|
|
840
1247
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
841
1248
|
valueType: MeasureValueType.CURRENCY,
|
|
842
1249
|
decimalPlaces: 2,
|
|
843
1250
|
useCompactNotation: true,
|
|
844
1251
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1252
|
+
aliases: [MEASURE.CHANNEL_VIDEO_VIEWS_COST]
|
|
845
1253
|
},
|
|
846
|
-
[MEASURE.
|
|
847
|
-
title: '
|
|
848
|
-
description: 'The number of video views
|
|
1254
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC]: {
|
|
1255
|
+
title: 'Channel 15-Second Video Views',
|
|
1256
|
+
description: 'The number of video views that reached 15 seconds across all channels.',
|
|
849
1257
|
sumPrefix: '',
|
|
850
1258
|
sumSuffix: '',
|
|
851
1259
|
avgPrefix: '',
|
|
852
1260
|
avgSuffix: '',
|
|
853
1261
|
icon: 'channel',
|
|
854
|
-
measure: MEASURE.
|
|
1262
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC,
|
|
855
1263
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
856
1264
|
valueType: MeasureValueType.NUMBER,
|
|
857
1265
|
decimalPlaces: 0,
|
|
858
1266
|
useCompactNotation: false,
|
|
859
1267
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
860
1268
|
},
|
|
861
|
-
[MEASURE.
|
|
862
|
-
title: '
|
|
863
|
-
description: 'The cost
|
|
864
|
-
sumPrefix: '$',
|
|
865
|
-
sumSuffix: '',
|
|
866
|
-
avgPrefix: '$',
|
|
867
|
-
avgSuffix: '',
|
|
868
|
-
icon: 'channel',
|
|
869
|
-
measure: MEASURE.CHANNEL_VIDEO_VIEWS_COST,
|
|
870
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
871
|
-
valueType: MeasureValueType.CURRENCY,
|
|
872
|
-
decimalPlaces: 2,
|
|
873
|
-
useCompactNotation: true,
|
|
874
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
875
|
-
},
|
|
876
|
-
[MEASURE.CHANNEL_VIDEO_VIEWS_15SEC_COST]: {
|
|
877
|
-
title: '15-Second Video Views Cost - Channel Reported',
|
|
878
|
-
description: 'The cost of 15-second video views as reported by the channel.',
|
|
879
|
-
sumPrefix: '$',
|
|
880
|
-
sumSuffix: '',
|
|
881
|
-
avgPrefix: '$',
|
|
882
|
-
avgSuffix: '',
|
|
883
|
-
icon: 'channel',
|
|
884
|
-
measure: MEASURE.CHANNEL_VIDEO_VIEWS_15SEC_COST,
|
|
885
|
-
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
886
|
-
valueType: MeasureValueType.CURRENCY,
|
|
887
|
-
decimalPlaces: 2,
|
|
888
|
-
useCompactNotation: true,
|
|
889
|
-
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
890
|
-
},
|
|
891
|
-
[MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST]: {
|
|
892
|
-
title: 'Video Thruplay Cost - Channel Reported',
|
|
893
|
-
description: 'The cost of complete video views as reported by the channel.',
|
|
1269
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC_COST]: {
|
|
1270
|
+
title: 'Channel Cost per 15-Second Video View',
|
|
1271
|
+
description: 'The cost per 15-second video view across all channels.',
|
|
894
1272
|
sumPrefix: '$',
|
|
895
1273
|
sumSuffix: '',
|
|
896
1274
|
avgPrefix: '$',
|
|
897
1275
|
avgSuffix: '',
|
|
898
1276
|
icon: 'channel',
|
|
899
|
-
measure: MEASURE.
|
|
1277
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC_COST,
|
|
900
1278
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
901
1279
|
valueType: MeasureValueType.CURRENCY,
|
|
902
1280
|
decimalPlaces: 2,
|
|
903
1281
|
useCompactNotation: true,
|
|
904
1282
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
905
1283
|
},
|
|
906
|
-
[MEASURE.
|
|
907
|
-
title: '30-Second Video Views
|
|
908
|
-
description: 'The number of video views that reached 30 seconds
|
|
1284
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC]: {
|
|
1285
|
+
title: 'Channel 30-Second Video Views',
|
|
1286
|
+
description: 'The number of video views that reached 30 seconds across all channels.',
|
|
909
1287
|
sumPrefix: '',
|
|
910
1288
|
sumSuffix: '',
|
|
911
1289
|
avgPrefix: '',
|
|
912
1290
|
avgSuffix: '',
|
|
913
1291
|
icon: 'channel',
|
|
914
|
-
measure: MEASURE.
|
|
1292
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC,
|
|
915
1293
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
916
1294
|
valueType: MeasureValueType.NUMBER,
|
|
917
1295
|
decimalPlaces: 0,
|
|
918
1296
|
useCompactNotation: false,
|
|
919
1297
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
920
1298
|
},
|
|
921
|
-
[MEASURE.
|
|
922
|
-
title: '
|
|
923
|
-
description: 'The
|
|
924
|
-
sumPrefix: '',
|
|
1299
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC_COST]: {
|
|
1300
|
+
title: 'Channel Cost per 30-Second Video View',
|
|
1301
|
+
description: 'The cost per 30-second video view across all channels.',
|
|
1302
|
+
sumPrefix: '$',
|
|
925
1303
|
sumSuffix: '',
|
|
926
|
-
avgPrefix: '',
|
|
1304
|
+
avgPrefix: '$',
|
|
927
1305
|
avgSuffix: '',
|
|
928
1306
|
icon: 'channel',
|
|
929
|
-
measure: MEASURE.
|
|
1307
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC_COST,
|
|
930
1308
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
931
|
-
valueType: MeasureValueType.
|
|
932
|
-
decimalPlaces:
|
|
933
|
-
useCompactNotation:
|
|
1309
|
+
valueType: MeasureValueType.CURRENCY,
|
|
1310
|
+
decimalPlaces: 2,
|
|
1311
|
+
useCompactNotation: true,
|
|
934
1312
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
935
1313
|
},
|
|
936
1314
|
[MEASURE.CHANNEL_VIDEO_P25_WATCHED_VIEWS]: {
|
|
937
|
-
title: '25% Video Views
|
|
938
|
-
description: 'The number of video views that reached 25% completion
|
|
1315
|
+
title: 'Channel 25% Video Views',
|
|
1316
|
+
description: 'The number of video views that reached 25% completion across all channels.',
|
|
939
1317
|
sumPrefix: '',
|
|
940
1318
|
sumSuffix: '',
|
|
941
1319
|
avgPrefix: '',
|
|
@@ -949,8 +1327,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
949
1327
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
950
1328
|
},
|
|
951
1329
|
[MEASURE.CHANNEL_VIDEO_P50_WATCHED_VIEWS]: {
|
|
952
|
-
title: '50% Video Views
|
|
953
|
-
description: 'The number of video views that reached 50% completion
|
|
1330
|
+
title: 'Channel 50% Video Views',
|
|
1331
|
+
description: 'The number of video views that reached 50% completion across all channels.',
|
|
954
1332
|
sumPrefix: '',
|
|
955
1333
|
sumSuffix: '',
|
|
956
1334
|
avgPrefix: '',
|
|
@@ -964,8 +1342,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
964
1342
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
965
1343
|
},
|
|
966
1344
|
[MEASURE.CHANNEL_VIDEO_P75_WATCHED_VIEWS]: {
|
|
967
|
-
title: '75% Video Views
|
|
968
|
-
description: 'The number of video views that reached 75% completion
|
|
1345
|
+
title: 'Channel 75% Video Views',
|
|
1346
|
+
description: 'The number of video views that reached 75% completion across all channels.',
|
|
969
1347
|
sumPrefix: '',
|
|
970
1348
|
sumSuffix: '',
|
|
971
1349
|
avgPrefix: '',
|
|
@@ -979,8 +1357,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
979
1357
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
980
1358
|
},
|
|
981
1359
|
[MEASURE.CHANNEL_VIDEO_P95_WATCHED_VIEWS]: {
|
|
982
|
-
title: '95% Video Views
|
|
983
|
-
description: 'The number of video views that reached 95% completion
|
|
1360
|
+
title: 'Channel 95% Video Views',
|
|
1361
|
+
description: 'The number of video views that reached 95% completion across all channels.',
|
|
984
1362
|
sumPrefix: '',
|
|
985
1363
|
sumSuffix: '',
|
|
986
1364
|
avgPrefix: '',
|
|
@@ -994,8 +1372,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
994
1372
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
995
1373
|
},
|
|
996
1374
|
[MEASURE.CHANNEL_VIDEO_P100_WATCHED_VIEWS]: {
|
|
997
|
-
title: '
|
|
998
|
-
description: 'The number of video views that reached 100% completion
|
|
1375
|
+
title: 'Channel 100% Video Views',
|
|
1376
|
+
description: 'The number of video views that reached 100% completion across all channels.',
|
|
999
1377
|
sumPrefix: '',
|
|
1000
1378
|
sumSuffix: '',
|
|
1001
1379
|
avgPrefix: '',
|
|
@@ -1009,8 +1387,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1009
1387
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1010
1388
|
},
|
|
1011
1389
|
[MEASURE.CHANNEL_VIDEO_QUARTILE_P25_RATE]: {
|
|
1012
|
-
title: '25% Video Completion Rate
|
|
1013
|
-
description: 'The percentage of video views that reached 25% completion
|
|
1390
|
+
title: 'Channel 25% Video Completion Rate',
|
|
1391
|
+
description: 'The percentage of video views that reached 25% completion across all channels.',
|
|
1014
1392
|
sumPrefix: '',
|
|
1015
1393
|
sumSuffix: '%',
|
|
1016
1394
|
avgPrefix: '',
|
|
@@ -1024,8 +1402,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1024
1402
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1025
1403
|
},
|
|
1026
1404
|
[MEASURE.CHANNEL_VIDEO_QUARTILE_P50_RATE]: {
|
|
1027
|
-
title: '50% Video Completion Rate
|
|
1028
|
-
description: 'The percentage of video views that reached 50% completion
|
|
1405
|
+
title: 'Channel 50% Video Completion Rate',
|
|
1406
|
+
description: 'The percentage of video views that reached 50% completion across all channels.',
|
|
1029
1407
|
sumPrefix: '',
|
|
1030
1408
|
sumSuffix: '%',
|
|
1031
1409
|
avgPrefix: '',
|
|
@@ -1039,8 +1417,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1039
1417
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1040
1418
|
},
|
|
1041
1419
|
[MEASURE.CHANNEL_VIDEO_QUARTILE_P75_RATE]: {
|
|
1042
|
-
title: '75% Video Completion Rate
|
|
1043
|
-
description: 'The percentage of video views that reached 75% completion
|
|
1420
|
+
title: 'Channel 75% Video Completion Rate',
|
|
1421
|
+
description: 'The percentage of video views that reached 75% completion across all channels.',
|
|
1044
1422
|
sumPrefix: '',
|
|
1045
1423
|
sumSuffix: '%',
|
|
1046
1424
|
avgPrefix: '',
|
|
@@ -1054,8 +1432,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1054
1432
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1055
1433
|
},
|
|
1056
1434
|
[MEASURE.CHANNEL_VIDEO_QUARTILE_P100_RATE]: {
|
|
1057
|
-
title: '100% Video Completion Rate
|
|
1058
|
-
description: 'The percentage of video views that reached
|
|
1435
|
+
title: 'Channel 100% Video Completion Rate',
|
|
1436
|
+
description: 'The percentage of video views that reached 100% completion across all channels.',
|
|
1059
1437
|
sumPrefix: '',
|
|
1060
1438
|
sumSuffix: '%',
|
|
1061
1439
|
avgPrefix: '',
|
|
@@ -1068,9 +1446,39 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1068
1446
|
useCompactNotation: false,
|
|
1069
1447
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1070
1448
|
},
|
|
1449
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY]: {
|
|
1450
|
+
title: 'Channel Video ThruPlay Views',
|
|
1451
|
+
description: 'The number of video views played to completion across all channels.',
|
|
1452
|
+
sumPrefix: '',
|
|
1453
|
+
sumSuffix: '',
|
|
1454
|
+
avgPrefix: '',
|
|
1455
|
+
avgSuffix: '',
|
|
1456
|
+
icon: 'channel',
|
|
1457
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY,
|
|
1458
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
1459
|
+
valueType: MeasureValueType.NUMBER,
|
|
1460
|
+
decimalPlaces: 0,
|
|
1461
|
+
useCompactNotation: false,
|
|
1462
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1463
|
+
},
|
|
1464
|
+
[MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST]: {
|
|
1465
|
+
title: 'Channel Cost per Video ThruPlay',
|
|
1466
|
+
description: 'The cost per video played to completion across all channels.',
|
|
1467
|
+
sumPrefix: '$',
|
|
1468
|
+
sumSuffix: '',
|
|
1469
|
+
avgPrefix: '$',
|
|
1470
|
+
avgSuffix: '',
|
|
1471
|
+
icon: 'channel',
|
|
1472
|
+
measure: MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST,
|
|
1473
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
1474
|
+
valueType: MeasureValueType.CURRENCY,
|
|
1475
|
+
decimalPlaces: 2,
|
|
1476
|
+
useCompactNotation: true,
|
|
1477
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1478
|
+
},
|
|
1071
1479
|
[MEASURE.CHANNEL_VIDEO_PLAYS]: {
|
|
1072
|
-
title: 'Video Plays
|
|
1073
|
-
description: 'The number of video
|
|
1480
|
+
title: 'Channel Video Plays',
|
|
1481
|
+
description: 'The number of video play initiations across all channels.',
|
|
1074
1482
|
sumPrefix: '',
|
|
1075
1483
|
sumSuffix: '',
|
|
1076
1484
|
avgPrefix: '',
|
|
@@ -1083,9 +1491,24 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1083
1491
|
useCompactNotation: false,
|
|
1084
1492
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1085
1493
|
},
|
|
1494
|
+
[MEASURE.CHANNEL_VIDEO_PLAYS_COST]: {
|
|
1495
|
+
title: 'Channel Cost per Video Play',
|
|
1496
|
+
description: 'The cost per video play initiation across all channels.',
|
|
1497
|
+
sumPrefix: '$',
|
|
1498
|
+
sumSuffix: '',
|
|
1499
|
+
avgPrefix: '$',
|
|
1500
|
+
avgSuffix: '',
|
|
1501
|
+
icon: 'channel',
|
|
1502
|
+
measure: MEASURE.CHANNEL_VIDEO_PLAYS_COST,
|
|
1503
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
1504
|
+
valueType: MeasureValueType.CURRENCY,
|
|
1505
|
+
decimalPlaces: 2,
|
|
1506
|
+
useCompactNotation: true,
|
|
1507
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1508
|
+
},
|
|
1086
1509
|
[MEASURE.CHANNEL_CONVERSIONS]: {
|
|
1087
|
-
title: '
|
|
1088
|
-
description: 'The total number of conversions
|
|
1510
|
+
title: 'Channel Conversions',
|
|
1511
|
+
description: 'The total number of conversions across all channels.',
|
|
1089
1512
|
sumPrefix: '',
|
|
1090
1513
|
sumSuffix: '',
|
|
1091
1514
|
avgPrefix: '',
|
|
@@ -1099,8 +1522,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1099
1522
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1100
1523
|
},
|
|
1101
1524
|
[MEASURE.CHANNEL_CONVERSIONS_VALUE]: {
|
|
1102
|
-
title: 'Conversions Value
|
|
1103
|
-
description: 'The total value of conversions
|
|
1525
|
+
title: 'Channel Conversions Value',
|
|
1526
|
+
description: 'The total value of conversions across all channels.',
|
|
1104
1527
|
sumPrefix: '$',
|
|
1105
1528
|
sumSuffix: '',
|
|
1106
1529
|
avgPrefix: '$',
|
|
@@ -1114,8 +1537,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1114
1537
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1115
1538
|
},
|
|
1116
1539
|
[MEASURE.CHANNEL_CONVERSIONS_COST]: {
|
|
1117
|
-
title: '
|
|
1118
|
-
description: 'The cost
|
|
1540
|
+
title: 'Channel Cost per Conversion',
|
|
1541
|
+
description: 'The cost per conversion across all channels.',
|
|
1119
1542
|
sumPrefix: '$',
|
|
1120
1543
|
sumSuffix: '',
|
|
1121
1544
|
avgPrefix: '$',
|
|
@@ -1129,8 +1552,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1129
1552
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1130
1553
|
},
|
|
1131
1554
|
[MEASURE.CHANNEL_CONVERSIONS_ROAS]: {
|
|
1132
|
-
title: 'Conversions ROAS
|
|
1133
|
-
description: 'The return on ad spend
|
|
1555
|
+
title: 'Channel Conversions ROAS',
|
|
1556
|
+
description: 'The return on ad spend for conversions across all channels.',
|
|
1134
1557
|
sumPrefix: '',
|
|
1135
1558
|
sumSuffix: 'x',
|
|
1136
1559
|
avgPrefix: '',
|
|
@@ -1144,8 +1567,8 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1144
1567
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1145
1568
|
},
|
|
1146
1569
|
[MEASURE.CHANNEL_ALL_CONVERSIONS]: {
|
|
1147
|
-
title: 'All Conversions
|
|
1148
|
-
description: 'The total number of conversions across all
|
|
1570
|
+
title: 'Channel All Conversions',
|
|
1571
|
+
description: 'The total number of all conversions across all channels.',
|
|
1149
1572
|
sumPrefix: '',
|
|
1150
1573
|
sumSuffix: '',
|
|
1151
1574
|
avgPrefix: '',
|
|
@@ -1156,11 +1579,11 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1156
1579
|
valueType: MeasureValueType.NUMBER,
|
|
1157
1580
|
decimalPlaces: 0,
|
|
1158
1581
|
useCompactNotation: false,
|
|
1159
|
-
applicableContexts:
|
|
1582
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1160
1583
|
},
|
|
1161
1584
|
[MEASURE.CHANNEL_ALL_CONVERSIONS_VALUE]: {
|
|
1162
|
-
title: 'All Conversions Value
|
|
1163
|
-
description: 'The total value of all conversions
|
|
1585
|
+
title: 'Channel All Conversions Value',
|
|
1586
|
+
description: 'The total value of all conversions across all channels.',
|
|
1164
1587
|
sumPrefix: '$',
|
|
1165
1588
|
sumSuffix: '',
|
|
1166
1589
|
avgPrefix: '$',
|
|
@@ -1171,11 +1594,11 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1171
1594
|
valueType: MeasureValueType.CURRENCY,
|
|
1172
1595
|
decimalPlaces: 2,
|
|
1173
1596
|
useCompactNotation: true,
|
|
1174
|
-
applicableContexts:
|
|
1597
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1175
1598
|
},
|
|
1176
1599
|
[MEASURE.CHANNEL_ALL_CONVERSIONS_COST]: {
|
|
1177
|
-
title: '
|
|
1178
|
-
description: 'The cost
|
|
1600
|
+
title: 'Channel Cost per All Conversions',
|
|
1601
|
+
description: 'The cost per conversion across all channels.',
|
|
1179
1602
|
sumPrefix: '$',
|
|
1180
1603
|
sumSuffix: '',
|
|
1181
1604
|
avgPrefix: '$',
|
|
@@ -1186,11 +1609,11 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1186
1609
|
valueType: MeasureValueType.CURRENCY,
|
|
1187
1610
|
decimalPlaces: 2,
|
|
1188
1611
|
useCompactNotation: true,
|
|
1189
|
-
applicableContexts:
|
|
1612
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1190
1613
|
},
|
|
1191
1614
|
[MEASURE.CHANNEL_ALL_CONVERSIONS_ROAS]: {
|
|
1192
|
-
title: 'All Conversions ROAS
|
|
1193
|
-
description: 'The return on ad spend
|
|
1615
|
+
title: 'Channel All Conversions ROAS',
|
|
1616
|
+
description: 'The return on ad spend for all conversions across all channels.',
|
|
1194
1617
|
sumPrefix: '',
|
|
1195
1618
|
sumSuffix: 'x',
|
|
1196
1619
|
avgPrefix: '',
|
|
@@ -1201,22 +1624,37 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1201
1624
|
valueType: MeasureValueType.MULTIPLIER,
|
|
1202
1625
|
decimalPlaces: 2,
|
|
1203
1626
|
useCompactNotation: false,
|
|
1204
|
-
applicableContexts:
|
|
1627
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1628
|
+
},
|
|
1629
|
+
[MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS]: {
|
|
1630
|
+
title: 'Channel View-Through Conversions',
|
|
1631
|
+
description: 'The number of conversions that occurred after someone saw, but did not click, an ad across all channels.',
|
|
1632
|
+
sumPrefix: '',
|
|
1633
|
+
sumSuffix: '',
|
|
1634
|
+
avgPrefix: '',
|
|
1635
|
+
avgSuffix: '',
|
|
1636
|
+
icon: 'channel',
|
|
1637
|
+
measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS,
|
|
1638
|
+
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
1639
|
+
valueType: MeasureValueType.NUMBER,
|
|
1640
|
+
decimalPlaces: 0,
|
|
1641
|
+
useCompactNotation: false,
|
|
1642
|
+
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1205
1643
|
},
|
|
1206
|
-
[MEASURE.
|
|
1207
|
-
title: 'Cost
|
|
1208
|
-
description: 'The cost
|
|
1644
|
+
[MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS_COST]: {
|
|
1645
|
+
title: 'Channel Cost per View-Through Conversion',
|
|
1646
|
+
description: 'The cost per view-through conversion across all channels.',
|
|
1209
1647
|
sumPrefix: '$',
|
|
1210
1648
|
sumSuffix: '',
|
|
1211
1649
|
avgPrefix: '$',
|
|
1212
1650
|
avgSuffix: '',
|
|
1213
1651
|
icon: 'channel',
|
|
1214
|
-
measure: MEASURE.
|
|
1652
|
+
measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS_COST,
|
|
1215
1653
|
category: MEASURE_CATEGORY.UPSTACK_DATA,
|
|
1216
1654
|
valueType: MeasureValueType.CURRENCY,
|
|
1217
1655
|
decimalPlaces: 2,
|
|
1218
1656
|
useCompactNotation: true,
|
|
1219
1657
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1220
|
-
}
|
|
1658
|
+
},
|
|
1221
1659
|
};
|
|
1222
1660
|
//# sourceMappingURL=channel-measure-definitions.js.map
|