-
Notifications
You must be signed in to change notification settings - Fork 0
/
fieldMapping.json
294 lines (294 loc) · 11 KB
/
fieldMapping.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
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
{
"Version": "v1",
"MappingFields": [
{
"Name": "Initials",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.Name.Initials\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "FirstName",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.Name.NickName\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "LastName",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"// generateSurnameOption1.js [https://github.com/Tools4everBV/HelloID-Lib-Prov-HelperFunctions/blob/master/Javascript/Target/Surname_Lastname/Scripts/generateSurnameOption1.js]\\r\\n//\\r\\n// Mapping logic to generate the Surname according to the following convention.\\r\\n// B\\tvan den Boele\\r\\n// BP\\tvan den Boele – de Vries\\r\\n// P\\tde Vries\\r\\n// PB de Vries – van den Boele\\r\\nfunction generateSurname() {\\r\\n let nickName = Person.Name.NickName;\\r\\n let middleName = Person.Name.FamilyNamePrefix;\\r\\n let lastName = Person.Name.FamilyName;\\r\\n let middleNamePartner = Person.Name.FamilyNamePartnerPrefix;\\r\\n let lastNamePartner = Person.Name.FamilyNamePartner;\\r\\n let convention = Person.Name.Convention;\\r\\n\\r\\n let surName = '';\\r\\n switch (convention) {\\r\\n case \\\"BP\\\":\\r\\n if (typeof middleName !== 'undefined' && middleName) { surName = surName + middleName + ' ' }\\r\\n surName = surName + lastName;\\r\\n\\r\\n surName = surName + ' - ';\\r\\n if (typeof middleNamePartner !== 'undefined' && middleNamePartner) { surName = surName + middleNamePartner + ' ' }\\r\\n surName = surName + lastNamePartner;\\r\\n break;\\r\\n case \\\"PB\\\":\\r\\n if (typeof middleNamePartner !== 'undefined' && middleNamePartner) { surName = surName + middleNamePartner + ' ' }\\r\\n surName = surName + lastNamePartner;\\r\\n\\r\\n surName = surName + ' - ';\\r\\n if (typeof middleName !== 'undefined' && middleName) { surName = surName + middleName + ' ' }\\r\\n surName = surName + lastName;\\r\\n break;\\r\\n case \\\"P\\\":\\r\\n if (typeof middleNamePartner !== 'undefined' && middleNamePartner) { surName = surName + middleNamePartner + ' ' }\\r\\n surName = surName + lastNamePartner;\\r\\n break;\\r\\n case \\\"B\\\":\\r\\n default:\\r\\n if (typeof middleName !== 'undefined' && middleName) { surName = surName + middleName + ' ' }\\r\\n surName = surName + lastName;\\r\\n break;\\r\\n }\\r\\n // Trim spaces at start and end\\r\\n surName = surName.trim();\\r\\n\\r\\n // Shorten string to maxAttributeLength \\r\\n const maxAttributeLength = 64;\\r\\n surName = surName.substring(0, maxAttributeLength);\\r\\n\\r\\n return surName;\\r\\n}\\r\\n\\r\\ngenerateSurname();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "Email",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getEmail() {\\n let mail = '';\\n\\n if (typeof Person.Accounts.MicrosoftActiveDirectory.mail !== 'undefined' && Person.Accounts.MicrosoftActiveDirectory.mail) {\\n mail = Person.Accounts.MicrosoftActiveDirectory.mail;\\n }\\n\\n return mail;\\n}\\n\\ngetEmail()\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "FreeString2",
"Description": "Gets populated with salutation (Aanhef).",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getValue() {\\n switch (Person.Details.Gender) {\\n case \\\"Vrouw\\\":\\n return \\\"Mevr.\\\";\\n case \\\"Man\\\":\\n return \\\"Dhr.\\\";\\n default:\\n return null;\\n }\\n}\\n\\ngetValue();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "OccupationPerc",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getValue() {\\n let test = null\\n for (let i = 0; i < Person.Contracts.count; i++) { \\n if(Person.Contracts[i].Context.InConditions) { \\n test = test + Person.Contracts[i].Details.fte\\n }\\n }\\n return (test * 100).toFixed(2)\\n}\\ngetValue();\\n\\n\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "DisplayTypeRef",
"Description": "Because of a API requirement a dollar sign will be added to the property name in the code.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Fixed",
"Value": "\"1\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "RefBOStateUserDefined",
"Description": "Property needs to be populated with system code, there is no lookup in Planon so the system name will not suffice.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Fixed",
"Value": "\"532\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "DepartmentRef",
"Description": "Because of a API requirement a dollar sign will be added to the property name in the code.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.Department.ExternalId\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "FreeString41",
"Description": "Gets filled with the manager reference during the account lifecycle.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "None",
"Value": "null",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "PersonPositionRef",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.Title.Code\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "EmploymenttypeRef",
"Description": "Because of a API requirement a dollar sign will be added to the property name in the code.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Fixed",
"Value": "\"1\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "PersonTypeRef",
"Description": "The 2 spaces before the number are necessary because of API requirements",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Fixed",
"Value": "\" 3\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "Code",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.ExternalId\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "FreeDate29",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getValue() {\\n const date = new Date(); // Create the date object\\n return date.toISOString().split('T')[0];\\n}\\n\\ngetValue();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "FacilityNetUsername",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getSamAccountName() {\\r\\n let samAccountName = '';\\r\\n\\r\\n if (typeof Person.Accounts.MicrosoftActiveDirectory.sAMAccountName !== 'undefined' && Person.Accounts.MicrosoftActiveDirectory.sAMAccountName) {\\r\\n samAccountName = Person.Accounts.MicrosoftActiveDirectory.sAMAccountName;\\r\\n }\\r\\n\\r\\n return samAccountName;\\r\\n}\\r\\n\\r\\ngetSamAccountName()\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "AddressRef",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Fixed",
"Value": "\"8493\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
}
]
}