-
Notifications
You must be signed in to change notification settings - Fork 17
/
users_canvas_entry.view.lkml
83 lines (73 loc) · 1.73 KB
/
users_canvas_entry.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
# Users Entered Canvas
view: users_canvas_entry {
sql_table_name: PUBLIC.USERS_CANVAS_ENTRY ;;
dimension: id {
primary_key: yes
description: "unique ID for this conversion event"
hidden: yes
type: string
sql: ${TABLE}."ID" ;;
}
dimension: canvas_id {
description: "id of the 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 canvas step"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_STEP_ID" ;;
}
dimension: canvas_variation_id {
description: "id of the Canvas variation the user is in"
hidden: yes
type: string
sql: ${TABLE}."CANVAS_VARIATION_ID" ;;
}
dimension_group: entered_canvas_time {
description: "timestamp the user entered the canvas"
type: time
datatype: epoch
timeframes: [
raw,
time,
date,
week,
month,
quarter,
year
]
sql: ${TABLE}."TIME" ;;
}
dimension: entered_canvas_timezone {
description: "IANA timezone of the user at the time of the canvas entry"
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: in_control_group {
description: "is the user in the control group for the canvas variation"
type: yesno
sql: ${TABLE}."IN_CONTROL_GROUP" ;;
}
dimension: user_id {
description: "Braze id of the user"
hidden: yes
type: string
sql: ${TABLE}."USER_ID" ;;
}
}