forked from llooker/braze_message_engagement_block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
users_messages_email_markasspam.view.lkml
134 lines (117 loc) · 3.13 KB
/
users_messages_email_markasspam.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
# Email Marked as Spam Events
view: users_messages_email_markasspam {
sql_table_name: BRAZE.PASSENGERS_MESSAGES_EMAIL_MARKASSPAM ;;
dimension: id {
primary_key: yes
description: "unique id of this event"
hidden: yes
type: string
sql: ${TABLE}."ID" ;;
}
dimension: campaign_id {
description: "id of the campaign if from a campaign"
hidden: yes
type: string
sql: ${TABLE}."CAMPAIGN_ID" ;;
}
dimension: campaign_name {
description: "name of the campaign"
hidden: yes
type: string
sql: ${TABLE}."CAMPAIGN_NAME" ;;
}
dimension: canvas_id {
description: "id of the canvas if from a canvas"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_ID" ;;
}
dimension: canvas_name {
description: "name of the canvas"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_NAME" ;;
}
dimension: canvas_step_id {
description: "id of the step for this message if from a Canvas"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_STEP_ID" ;;
}
dimension: canvas_variation_id {
description: "id of the Canvas variation the user is in if from a Canvas"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_VARIATION_ID" ;;
}
dimension: email_address {
description: "email address for this event"
hidden: yes
type: string
sql: ${TABLE}."EMAIL_ADDRESS" ;;
}
dimension_group: email_marked_as_spam_time {
description: "timestamp the email was marked as spam"
type: time
datatype: epoch
timeframes: [
raw,
time,
date,
day_of_week,
hour_of_day,
week,
month,
quarter,
year
]
sql: ${TABLE}."TIME" ;;
}
dimension: email_marked_as_spam_timezone {
description: "IANA timezone of the user at the time of the event"
hidden: yes
type: string
sql: ${TABLE}."TIMEZONE" ;;
}
dimension: external_user_id {
description: "External ID of the user"
hidden: yes
type: string
sql: ${TABLE}."EXTERNAL_USER_ID" ;;
}
dimension: message_variation_id {
description: "id of the message variation if from a campaign"
hidden: yes
type: string
sql: ${TABLE}."MESSAGE_VARIATION_ID" ;;
}
dimension: send_id {
description: "id of the message if specified for the campaign (See Send Identifier under REST API Parameter Definitions)"
hidden: yes
type: string
sql: ${TABLE}."SEND_ID" ;;
}
dimension: user_agent_marked_as_spam {
description: "description of the user's system and browser for the marked as spam event (only use for marked as spam events)"
hidden: yes
type: string
sql: ${TABLE}."USER_AGENT" ;;
}
dimension: user_id {
description: "Braze id of the user"
hidden: yes
type: string
sql: ${TABLE}."USER_ID" ;;
}
measure: emails_marked_as_spam {
description: "distinct count of marked-as-spam event IDs"
type: count_distinct
sql: ${TABLE}."ID" ;;
}
measure: marked_as_spam_rate {
description: "emails marked as spam/emails sent"
type: number
value_format_name: percent_2
sql: ${emails_marked_as_spam}/NULLIF(${users_messages_email_send.emails_sent},0) ;;
}
}