-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigSchema.json
160 lines (149 loc) · 6.63 KB
/
configSchema.json
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
{
"title": "Configuration",
"type": "object",
"properties": {
"appId": {
"title": "App ID",
"type": "string",
"description": "Intercom application ID"
},
"#apiKey": {
"title": "API Key",
"type": "string",
"description": "Intercom API key"
},
"userColumnMapping": {
"title": "User columns mapping",
"type": "object",
"description": "Column mapping of user data",
"properties": {
"standardColumns": {
"type": "array",
"title": "Standard User attributes",
"format": "table",
"description": "Column mapping of standard User attributes",
"uniqueItems": true,
"items": {
"type": "object",
"title": "Mapping",
"properties": {
"srcCol": {
"type": "string",
"title": "Source Column"
},
"destCol": {
"type": "string",
"title": "Standard User attribute",
"enum": ["user_id", "email", "signed_up_at",
"name", "last_seen_ip", "last_seen_user_agent", "last_request_at",
"unsubscribed_from_emails", "update_last_request_at", "new_session"
]
}
},
"required": [
"destCol", "srcCol"
]
}
},
"customColumns": {
"type": "array",
"title": "Custom User attributes",
"format": "table",
"description": "Column names mapping of custom User attributes.",
"uniqueItems": true,
"items": {
"type": "object",
"title": "Mapping",
"properties": {
"srcCol": {
"type": "string",
"title": "Source Column"
},
"destCol": {
"type": "string",
"title": "Intercom Column"
},
"dataType": {
"type": "string",
"title": "Attribute data type",
"enum": ["Boolean", "Double", "Float", "Integer", "Long", "String"
],
"default": "String"
}
},
"required": [
"destCol", "srcCol", "dataType"
]
}
},
"companyColumnMapping": {
"title": "Company attributes mapping",
"type": "object",
"description": "Mapping of company column names.",
"properties": {
"standardColumns": {
"type": "array",
"title": "Standard Company attributes",
"format": "table",
"description": "Column mapping of standard Company attributes",
"uniqueItems": true,
"items": {
"type": "object",
"title": "Mapping",
"properties": {
"srcCol": {
"type": "string",
"title": "Source Column"
},
"destCol": {
"type": "string",
"title": "Standard Company attribute",
"enum": ["company_remote_created_at", "company_id", "company_name", "company_monthly_spend", "company_plan"
]
}
},
"required": [
"destCol", "srcCol"
]
}
},
"customColumns": {
"type": "array",
"title": "Custom Company attributes",
"format": "table",
"description": "Column names mapping of custom Company attributes.",
"uniqueItems": true,
"items": {
"type": "object",
"title": "Mapping",
"properties": {
"srcCol": {
"type": "string",
"title": "Source Column"
},
"destCol": {
"type": "string",
"title": "Intercom Column"
},
"dataType": {
"type": "string",
"title": "Attribute data type",
"enum": ["Boolean", "Double", "Float", "Integer", "Long", "String"
],
"default": "String"
}
},
"required": [
"destCol", "srcCol", "dataType"
]
}
}
},
"required": ["standardColumns", "customColumns"]
}
},
"required": ["standardColumns", "customColumns", "companyColumnMapping"]
}
},
"required": ["userColumnMapping", "appId", "#apiKey"]
}