@schandlergarcia/sf-web-components 1.2.6 → 1.2.8

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.
Files changed (165) hide show
  1. package/package.json +2 -1
  2. package/scripts/postinstall.mjs +69 -93
  3. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Account.cls +196 -0
  4. package/src/components/library/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls +25 -0
  5. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Asset.cls +138 -0
  6. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Attachment.cls +35 -0
  7. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Case.cls +111 -0
  8. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contact.cls +167 -0
  9. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contract.cls +96 -0
  10. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Domain.cls +29 -0
  11. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Lead.cls +128 -0
  12. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Note.cls +32 -0
  13. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Opportunity.cls +113 -0
  14. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Order.cls +127 -0
  15. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls +47 -0
  16. package/src/components/library/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls +47 -0
  17. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Product2.cls +91 -0
  18. package/src/components/library/.sfdx/tools/sobjects/standardObjects/RecordType.cls +35 -0
  19. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Report.cls +47 -0
  20. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Task.cls +79 -0
  21. package/src/components/library/.sfdx/tools/sobjects/standardObjects/User.cls +2318 -0
  22. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Account.json +2952 -0
  23. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json +875 -0
  24. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Asset.json +1699 -0
  25. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json +362 -0
  26. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Case.json +1371 -0
  27. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contact.json +2309 -0
  28. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contract.json +1304 -0
  29. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Domain.json +293 -0
  30. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Lead.json +1977 -0
  31. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Note.json +303 -0
  32. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json +1470 -0
  33. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Order.json +1646 -0
  34. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json +482 -0
  35. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json +433 -0
  36. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Product2.json +1039 -0
  37. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json +2576 -0
  38. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Report.json +486 -0
  39. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Task.json +4296 -0
  40. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/User.json +30415 -0
  41. package/src/components/library/.sfdx/tools/soqlMetadata/typeNames.json +78 -0
  42. package/src/components/library/.sfdx/typings/lwc/sobjects/Account.d.ts +264 -0
  43. package/src/components/library/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts +44 -0
  44. package/src/components/library/.sfdx/typings/lwc/sobjects/Asset.d.ts +240 -0
  45. package/src/components/library/.sfdx/typings/lwc/sobjects/Attachment.d.ts +76 -0
  46. package/src/components/library/.sfdx/typings/lwc/sobjects/Case.d.ts +172 -0
  47. package/src/components/library/.sfdx/typings/lwc/sobjects/Contact.d.ts +264 -0
  48. package/src/components/library/.sfdx/typings/lwc/sobjects/Contract.d.ts +188 -0
  49. package/src/components/library/.sfdx/typings/lwc/sobjects/Domain.d.ts +52 -0
  50. package/src/components/library/.sfdx/typings/lwc/sobjects/Lead.d.ts +252 -0
  51. package/src/components/library/.sfdx/typings/lwc/sobjects/Note.d.ts +64 -0
  52. package/src/components/library/.sfdx/typings/lwc/sobjects/Opportunity.d.ts +200 -0
  53. package/src/components/library/.sfdx/typings/lwc/sobjects/Order.d.ts +260 -0
  54. package/src/components/library/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts +64 -0
  55. package/src/components/library/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts +76 -0
  56. package/src/components/library/.sfdx/typings/lwc/sobjects/Product2.d.ts +96 -0
  57. package/src/components/library/.sfdx/typings/lwc/sobjects/RecordType.d.ts +64 -0
  58. package/src/components/library/.sfdx/typings/lwc/sobjects/Report.d.ts +80 -0
  59. package/src/components/library/.sfdx/typings/lwc/sobjects/Task.d.ts +184 -0
  60. package/src/components/library/.sfdx/typings/lwc/sobjects/User.d.ts +752 -0
  61. package/src/components/library/cards/ActionList.jsx +38 -0
  62. package/src/components/library/cards/ActivityCard.jsx +56 -0
  63. package/src/components/library/cards/BaseCard.jsx +109 -0
  64. package/src/components/library/cards/CalloutCard.jsx +37 -0
  65. package/src/components/library/cards/ChartCard.jsx +105 -0
  66. package/src/components/library/cards/FeedPanel.jsx +39 -0
  67. package/src/components/library/cards/ListCard.jsx +193 -0
  68. package/src/components/library/cards/MetricCard.jsx +109 -0
  69. package/src/components/library/cards/MetricsStrip.jsx +78 -0
  70. package/src/components/library/cards/SectionCard.jsx +83 -0
  71. package/src/components/library/cards/SemanticMetricCard.jsx +52 -0
  72. package/src/components/library/cards/SemanticMetricCardWithLoading.jsx +23 -0
  73. package/src/components/library/cards/SemanticTableCard.jsx +48 -0
  74. package/src/components/library/cards/SemanticTableCardWithLoading.jsx +22 -0
  75. package/src/components/library/cards/StatusCard.jsx +220 -0
  76. package/src/components/library/cards/TableCard.jsx +337 -0
  77. package/src/components/library/cards/WidgetCard.jsx +90 -0
  78. package/src/components/library/charts/D3Chart.jsx +109 -0
  79. package/src/components/library/charts/D3ChartTemplates.jsx +126 -0
  80. package/src/components/library/charts/GeoMap.jsx +293 -0
  81. package/src/components/library/chat/ChatBar.jsx +256 -0
  82. package/src/components/library/chat/ChatInput.jsx +89 -0
  83. package/src/components/library/chat/ChatMessage.jsx +178 -0
  84. package/src/components/library/chat/ChatMessageList.jsx +73 -0
  85. package/src/components/library/chat/ChatPanel.jsx +97 -0
  86. package/src/components/library/chat/ChatSuggestions.jsx +28 -0
  87. package/src/components/library/chat/ChatToolCall.jsx +100 -0
  88. package/src/components/library/chat/ChatTypingIndicator.jsx +23 -0
  89. package/src/components/library/chat/ChatWelcome.jsx +43 -0
  90. package/src/components/library/chat/index.jsx +10 -0
  91. package/src/components/library/chat/useChatState.jsx +130 -0
  92. package/src/components/library/data/DataModeProvider.jsx +67 -0
  93. package/src/components/library/data/DataModeToggle.jsx +36 -0
  94. package/src/components/library/data/chartDataProvider.jsx +61 -0
  95. package/src/components/library/data/filterUtils.jsx +141 -0
  96. package/src/components/library/data/useDataSource.jsx +33 -0
  97. package/src/components/library/data/usePageFilters.jsx +99 -0
  98. package/src/components/library/filters/FilterBar.jsx +95 -0
  99. package/src/components/library/filters/SearchFilter.jsx +36 -0
  100. package/src/components/library/filters/SelectFilter.jsx +55 -0
  101. package/src/components/library/filters/ToggleFilter.jsx +52 -0
  102. package/src/components/library/filters/index.jsx +4 -0
  103. package/src/components/library/forms/FormField.jsx +291 -0
  104. package/src/components/library/forms/FormModal.jsx +201 -0
  105. package/src/components/library/forms/FormRenderer.jsx +46 -0
  106. package/src/components/library/forms/FormSection.jsx +69 -0
  107. package/src/components/library/forms/index.jsx +5 -0
  108. package/src/components/library/forms/useFormState.jsx +165 -0
  109. package/src/components/library/heroui/Accordion.jsx +26 -0
  110. package/src/components/library/heroui/Alert.jsx +8 -0
  111. package/src/components/library/heroui/Badge.jsx +8 -0
  112. package/src/components/library/heroui/Breadcrumbs.jsx +22 -0
  113. package/src/components/library/heroui/Button.jsx +58 -0
  114. package/src/components/library/heroui/Card.jsx +8 -0
  115. package/src/components/library/heroui/Collapsible.jsx +42 -0
  116. package/src/components/library/heroui/DatePicker.jsx +34 -0
  117. package/src/components/library/heroui/Dialog.jsx +37 -0
  118. package/src/components/library/heroui/Drawer.jsx +32 -0
  119. package/src/components/library/heroui/Dropdown.jsx +28 -0
  120. package/src/components/library/heroui/Field.jsx +51 -0
  121. package/src/components/library/heroui/Input.jsx +6 -0
  122. package/src/components/library/heroui/Kbd.jsx +8 -0
  123. package/src/components/library/heroui/Meter.jsx +8 -0
  124. package/src/components/library/heroui/Modal.jsx +32 -0
  125. package/src/components/library/heroui/Pagination.jsx +8 -0
  126. package/src/components/library/heroui/Popover.jsx +64 -0
  127. package/src/components/library/heroui/ProgressBar.jsx +8 -0
  128. package/src/components/library/heroui/ProgressCircle.jsx +8 -0
  129. package/src/components/library/heroui/ScrollShadow.jsx +8 -0
  130. package/src/components/library/heroui/Select.jsx +37 -0
  131. package/src/components/library/heroui/Separator.jsx +8 -0
  132. package/src/components/library/heroui/Skeleton.jsx +8 -0
  133. package/src/components/library/heroui/Tabs.jsx +26 -0
  134. package/src/components/library/heroui/Toast.jsx +25 -0
  135. package/src/components/library/heroui/Toggle.jsx +14 -0
  136. package/src/components/library/heroui/Tooltip.jsx +21 -0
  137. package/src/components/library/index.jsx +149 -0
  138. package/src/components/library/layout/PageContainer.jsx +11 -0
  139. package/src/components/library/skeletons/CardSkeleton.jsx +30 -0
  140. package/src/components/library/theme/AppThemeProvider.jsx +67 -0
  141. package/src/components/library/theme/tokens.jsx +72 -0
  142. package/src/components/library/ui/Alert.jsx +80 -0
  143. package/src/components/library/ui/Avatar.jsx +44 -0
  144. package/src/components/library/ui/BreadcrumbExtras.tsx +119 -0
  145. package/src/components/library/ui/Card.jsx +117 -0
  146. package/src/components/library/ui/Checkbox.jsx +17 -0
  147. package/src/components/library/ui/Chip.jsx +38 -0
  148. package/src/components/library/ui/Collapsible.tsx +31 -0
  149. package/src/components/library/ui/Container.jsx +56 -0
  150. package/src/components/library/ui/DatePicker.tsx +34 -0
  151. package/src/components/library/ui/Dialog.tsx +141 -0
  152. package/src/components/library/ui/EmptyState.jsx +46 -0
  153. package/src/components/library/ui/Field.tsx +82 -0
  154. package/src/components/library/ui/FieldGroup.jsx +17 -0
  155. package/src/components/library/ui/Label.jsx +22 -0
  156. package/src/components/library/ui/PaginationExtras.tsx +143 -0
  157. package/src/components/library/ui/Popover.tsx +39 -0
  158. package/src/components/library/ui/Select.tsx +113 -0
  159. package/src/components/library/ui/Spinner.jsx +64 -0
  160. package/src/components/library/ui/Text.jsx +46 -0
  161. package/src/components/library/ui/UIButton.jsx +61 -0
  162. package/src/components/library/ui/UIInput.jsx +21 -0
  163. package/src/components/workspace/ComponentRegistry.jsx +297 -0
  164. package/src/templates/pages/Home.tsx.template +6 -5
  165. package/src/templates/pages/NotFound.tsx.template +2 -2
@@ -0,0 +1,2309 @@
1
+ {
2
+ "fields": [
3
+ {
4
+ "aggregatable": true,
5
+ "custom": false,
6
+ "defaultValue": null,
7
+ "extraTypeInfo": null,
8
+ "filterable": true,
9
+ "groupable": true,
10
+ "inlineHelpText": null,
11
+ "label": "Contact ID",
12
+ "name": "Id",
13
+ "nillable": false,
14
+ "picklistValues": [],
15
+ "referenceTo": [],
16
+ "relationshipName": null,
17
+ "sortable": true,
18
+ "type": "id"
19
+ },
20
+ {
21
+ "aggregatable": false,
22
+ "custom": false,
23
+ "defaultValue": null,
24
+ "extraTypeInfo": null,
25
+ "filterable": true,
26
+ "groupable": true,
27
+ "inlineHelpText": null,
28
+ "label": "Deleted",
29
+ "name": "IsDeleted",
30
+ "nillable": false,
31
+ "picklistValues": [],
32
+ "referenceTo": [],
33
+ "relationshipName": null,
34
+ "sortable": true,
35
+ "type": "boolean"
36
+ },
37
+ {
38
+ "aggregatable": true,
39
+ "custom": false,
40
+ "defaultValue": null,
41
+ "extraTypeInfo": null,
42
+ "filterable": true,
43
+ "groupable": true,
44
+ "inlineHelpText": null,
45
+ "label": "Master Record ID",
46
+ "name": "MasterRecordId",
47
+ "nillable": true,
48
+ "picklistValues": [],
49
+ "referenceTo": [
50
+ "Contact"
51
+ ],
52
+ "relationshipName": "MasterRecord",
53
+ "sortable": true,
54
+ "type": "reference"
55
+ },
56
+ {
57
+ "aggregatable": true,
58
+ "custom": false,
59
+ "defaultValue": null,
60
+ "extraTypeInfo": null,
61
+ "filterable": true,
62
+ "groupable": true,
63
+ "inlineHelpText": null,
64
+ "label": "Account ID",
65
+ "name": "AccountId",
66
+ "nillable": true,
67
+ "picklistValues": [],
68
+ "referenceTo": [
69
+ "Account"
70
+ ],
71
+ "relationshipName": "Account",
72
+ "sortable": true,
73
+ "type": "reference"
74
+ },
75
+ {
76
+ "aggregatable": true,
77
+ "custom": false,
78
+ "defaultValue": null,
79
+ "extraTypeInfo": "personname",
80
+ "filterable": true,
81
+ "groupable": true,
82
+ "inlineHelpText": null,
83
+ "label": "Last Name",
84
+ "name": "LastName",
85
+ "nillable": false,
86
+ "picklistValues": [],
87
+ "referenceTo": [],
88
+ "relationshipName": null,
89
+ "sortable": true,
90
+ "type": "string"
91
+ },
92
+ {
93
+ "aggregatable": true,
94
+ "custom": false,
95
+ "defaultValue": null,
96
+ "extraTypeInfo": "personname",
97
+ "filterable": true,
98
+ "groupable": true,
99
+ "inlineHelpText": null,
100
+ "label": "First Name",
101
+ "name": "FirstName",
102
+ "nillable": true,
103
+ "picklistValues": [],
104
+ "referenceTo": [],
105
+ "relationshipName": null,
106
+ "sortable": true,
107
+ "type": "string"
108
+ },
109
+ {
110
+ "aggregatable": true,
111
+ "custom": false,
112
+ "defaultValue": null,
113
+ "extraTypeInfo": "personname",
114
+ "filterable": true,
115
+ "groupable": true,
116
+ "inlineHelpText": null,
117
+ "label": "Salutation",
118
+ "name": "Salutation",
119
+ "nillable": true,
120
+ "picklistValues": [
121
+ {
122
+ "active": true,
123
+ "defaultValue": false,
124
+ "label": "Mr.",
125
+ "validFor": null,
126
+ "value": "Mr."
127
+ },
128
+ {
129
+ "active": true,
130
+ "defaultValue": false,
131
+ "label": "Ms.",
132
+ "validFor": null,
133
+ "value": "Ms."
134
+ },
135
+ {
136
+ "active": true,
137
+ "defaultValue": false,
138
+ "label": "Mrs.",
139
+ "validFor": null,
140
+ "value": "Mrs."
141
+ },
142
+ {
143
+ "active": true,
144
+ "defaultValue": false,
145
+ "label": "Dr.",
146
+ "validFor": null,
147
+ "value": "Dr."
148
+ },
149
+ {
150
+ "active": true,
151
+ "defaultValue": false,
152
+ "label": "Prof.",
153
+ "validFor": null,
154
+ "value": "Prof."
155
+ },
156
+ {
157
+ "active": true,
158
+ "defaultValue": false,
159
+ "label": "Mx.",
160
+ "validFor": null,
161
+ "value": "Mx."
162
+ }
163
+ ],
164
+ "referenceTo": [],
165
+ "relationshipName": null,
166
+ "sortable": true,
167
+ "type": "picklist"
168
+ },
169
+ {
170
+ "aggregatable": true,
171
+ "custom": false,
172
+ "defaultValue": null,
173
+ "extraTypeInfo": "personname",
174
+ "filterable": true,
175
+ "groupable": true,
176
+ "inlineHelpText": null,
177
+ "label": "Full Name",
178
+ "name": "Name",
179
+ "nillable": false,
180
+ "picklistValues": [],
181
+ "referenceTo": [],
182
+ "relationshipName": null,
183
+ "sortable": true,
184
+ "type": "string"
185
+ },
186
+ {
187
+ "aggregatable": true,
188
+ "custom": false,
189
+ "defaultValue": null,
190
+ "extraTypeInfo": "plaintextarea",
191
+ "filterable": true,
192
+ "groupable": true,
193
+ "inlineHelpText": null,
194
+ "label": "Other Street",
195
+ "name": "OtherStreet",
196
+ "nillable": true,
197
+ "picklistValues": [],
198
+ "referenceTo": [],
199
+ "relationshipName": null,
200
+ "sortable": true,
201
+ "type": "textarea"
202
+ },
203
+ {
204
+ "aggregatable": true,
205
+ "custom": false,
206
+ "defaultValue": null,
207
+ "extraTypeInfo": null,
208
+ "filterable": true,
209
+ "groupable": true,
210
+ "inlineHelpText": null,
211
+ "label": "Other City",
212
+ "name": "OtherCity",
213
+ "nillable": true,
214
+ "picklistValues": [],
215
+ "referenceTo": [],
216
+ "relationshipName": null,
217
+ "sortable": true,
218
+ "type": "string"
219
+ },
220
+ {
221
+ "aggregatable": true,
222
+ "custom": false,
223
+ "defaultValue": null,
224
+ "extraTypeInfo": null,
225
+ "filterable": true,
226
+ "groupable": true,
227
+ "inlineHelpText": null,
228
+ "label": "Other State/Province",
229
+ "name": "OtherState",
230
+ "nillable": true,
231
+ "picklistValues": [],
232
+ "referenceTo": [],
233
+ "relationshipName": null,
234
+ "sortable": true,
235
+ "type": "string"
236
+ },
237
+ {
238
+ "aggregatable": true,
239
+ "custom": false,
240
+ "defaultValue": null,
241
+ "extraTypeInfo": null,
242
+ "filterable": true,
243
+ "groupable": true,
244
+ "inlineHelpText": null,
245
+ "label": "Other Zip/Postal Code",
246
+ "name": "OtherPostalCode",
247
+ "nillable": true,
248
+ "picklistValues": [],
249
+ "referenceTo": [],
250
+ "relationshipName": null,
251
+ "sortable": true,
252
+ "type": "string"
253
+ },
254
+ {
255
+ "aggregatable": true,
256
+ "custom": false,
257
+ "defaultValue": null,
258
+ "extraTypeInfo": null,
259
+ "filterable": true,
260
+ "groupable": true,
261
+ "inlineHelpText": null,
262
+ "label": "Other Country",
263
+ "name": "OtherCountry",
264
+ "nillable": true,
265
+ "picklistValues": [],
266
+ "referenceTo": [],
267
+ "relationshipName": null,
268
+ "sortable": true,
269
+ "type": "string"
270
+ },
271
+ {
272
+ "aggregatable": true,
273
+ "custom": false,
274
+ "defaultValue": null,
275
+ "extraTypeInfo": null,
276
+ "filterable": true,
277
+ "groupable": false,
278
+ "inlineHelpText": null,
279
+ "label": "Other Latitude",
280
+ "name": "OtherLatitude",
281
+ "nillable": true,
282
+ "picklistValues": [],
283
+ "referenceTo": [],
284
+ "relationshipName": null,
285
+ "sortable": true,
286
+ "type": "double"
287
+ },
288
+ {
289
+ "aggregatable": true,
290
+ "custom": false,
291
+ "defaultValue": null,
292
+ "extraTypeInfo": null,
293
+ "filterable": true,
294
+ "groupable": false,
295
+ "inlineHelpText": null,
296
+ "label": "Other Longitude",
297
+ "name": "OtherLongitude",
298
+ "nillable": true,
299
+ "picklistValues": [],
300
+ "referenceTo": [],
301
+ "relationshipName": null,
302
+ "sortable": true,
303
+ "type": "double"
304
+ },
305
+ {
306
+ "aggregatable": true,
307
+ "custom": false,
308
+ "defaultValue": null,
309
+ "extraTypeInfo": null,
310
+ "filterable": true,
311
+ "groupable": true,
312
+ "inlineHelpText": null,
313
+ "label": "Other Geocode Accuracy",
314
+ "name": "OtherGeocodeAccuracy",
315
+ "nillable": true,
316
+ "picklistValues": [
317
+ {
318
+ "active": true,
319
+ "defaultValue": false,
320
+ "label": "Address",
321
+ "validFor": null,
322
+ "value": "Address"
323
+ },
324
+ {
325
+ "active": true,
326
+ "defaultValue": false,
327
+ "label": "NearAddress",
328
+ "validFor": null,
329
+ "value": "NearAddress"
330
+ },
331
+ {
332
+ "active": true,
333
+ "defaultValue": false,
334
+ "label": "Block",
335
+ "validFor": null,
336
+ "value": "Block"
337
+ },
338
+ {
339
+ "active": true,
340
+ "defaultValue": false,
341
+ "label": "Street",
342
+ "validFor": null,
343
+ "value": "Street"
344
+ },
345
+ {
346
+ "active": true,
347
+ "defaultValue": false,
348
+ "label": "ExtendedZip",
349
+ "validFor": null,
350
+ "value": "ExtendedZip"
351
+ },
352
+ {
353
+ "active": true,
354
+ "defaultValue": false,
355
+ "label": "Zip",
356
+ "validFor": null,
357
+ "value": "Zip"
358
+ },
359
+ {
360
+ "active": true,
361
+ "defaultValue": false,
362
+ "label": "Neighborhood",
363
+ "validFor": null,
364
+ "value": "Neighborhood"
365
+ },
366
+ {
367
+ "active": true,
368
+ "defaultValue": false,
369
+ "label": "City",
370
+ "validFor": null,
371
+ "value": "City"
372
+ },
373
+ {
374
+ "active": true,
375
+ "defaultValue": false,
376
+ "label": "County",
377
+ "validFor": null,
378
+ "value": "County"
379
+ },
380
+ {
381
+ "active": true,
382
+ "defaultValue": false,
383
+ "label": "State",
384
+ "validFor": null,
385
+ "value": "State"
386
+ },
387
+ {
388
+ "active": true,
389
+ "defaultValue": false,
390
+ "label": "Unknown",
391
+ "validFor": null,
392
+ "value": "Unknown"
393
+ }
394
+ ],
395
+ "referenceTo": [],
396
+ "relationshipName": null,
397
+ "sortable": true,
398
+ "type": "picklist"
399
+ },
400
+ {
401
+ "aggregatable": false,
402
+ "custom": false,
403
+ "defaultValue": null,
404
+ "extraTypeInfo": null,
405
+ "filterable": true,
406
+ "groupable": false,
407
+ "inlineHelpText": null,
408
+ "label": "Other Address",
409
+ "name": "OtherAddress",
410
+ "nillable": true,
411
+ "picklistValues": [],
412
+ "referenceTo": [],
413
+ "relationshipName": null,
414
+ "sortable": false,
415
+ "type": "address"
416
+ },
417
+ {
418
+ "aggregatable": true,
419
+ "custom": false,
420
+ "defaultValue": null,
421
+ "extraTypeInfo": "plaintextarea",
422
+ "filterable": true,
423
+ "groupable": true,
424
+ "inlineHelpText": null,
425
+ "label": "Mailing Street",
426
+ "name": "MailingStreet",
427
+ "nillable": true,
428
+ "picklistValues": [],
429
+ "referenceTo": [],
430
+ "relationshipName": null,
431
+ "sortable": true,
432
+ "type": "textarea"
433
+ },
434
+ {
435
+ "aggregatable": true,
436
+ "custom": false,
437
+ "defaultValue": null,
438
+ "extraTypeInfo": null,
439
+ "filterable": true,
440
+ "groupable": true,
441
+ "inlineHelpText": null,
442
+ "label": "Mailing City",
443
+ "name": "MailingCity",
444
+ "nillable": true,
445
+ "picklistValues": [],
446
+ "referenceTo": [],
447
+ "relationshipName": null,
448
+ "sortable": true,
449
+ "type": "string"
450
+ },
451
+ {
452
+ "aggregatable": true,
453
+ "custom": false,
454
+ "defaultValue": null,
455
+ "extraTypeInfo": null,
456
+ "filterable": true,
457
+ "groupable": true,
458
+ "inlineHelpText": null,
459
+ "label": "Mailing State/Province",
460
+ "name": "MailingState",
461
+ "nillable": true,
462
+ "picklistValues": [],
463
+ "referenceTo": [],
464
+ "relationshipName": null,
465
+ "sortable": true,
466
+ "type": "string"
467
+ },
468
+ {
469
+ "aggregatable": true,
470
+ "custom": false,
471
+ "defaultValue": null,
472
+ "extraTypeInfo": null,
473
+ "filterable": true,
474
+ "groupable": true,
475
+ "inlineHelpText": null,
476
+ "label": "Mailing Zip/Postal Code",
477
+ "name": "MailingPostalCode",
478
+ "nillable": true,
479
+ "picklistValues": [],
480
+ "referenceTo": [],
481
+ "relationshipName": null,
482
+ "sortable": true,
483
+ "type": "string"
484
+ },
485
+ {
486
+ "aggregatable": true,
487
+ "custom": false,
488
+ "defaultValue": null,
489
+ "extraTypeInfo": null,
490
+ "filterable": true,
491
+ "groupable": true,
492
+ "inlineHelpText": null,
493
+ "label": "Mailing Country",
494
+ "name": "MailingCountry",
495
+ "nillable": true,
496
+ "picklistValues": [],
497
+ "referenceTo": [],
498
+ "relationshipName": null,
499
+ "sortable": true,
500
+ "type": "string"
501
+ },
502
+ {
503
+ "aggregatable": true,
504
+ "custom": false,
505
+ "defaultValue": null,
506
+ "extraTypeInfo": null,
507
+ "filterable": true,
508
+ "groupable": false,
509
+ "inlineHelpText": null,
510
+ "label": "Mailing Latitude",
511
+ "name": "MailingLatitude",
512
+ "nillable": true,
513
+ "picklistValues": [],
514
+ "referenceTo": [],
515
+ "relationshipName": null,
516
+ "sortable": true,
517
+ "type": "double"
518
+ },
519
+ {
520
+ "aggregatable": true,
521
+ "custom": false,
522
+ "defaultValue": null,
523
+ "extraTypeInfo": null,
524
+ "filterable": true,
525
+ "groupable": false,
526
+ "inlineHelpText": null,
527
+ "label": "Mailing Longitude",
528
+ "name": "MailingLongitude",
529
+ "nillable": true,
530
+ "picklistValues": [],
531
+ "referenceTo": [],
532
+ "relationshipName": null,
533
+ "sortable": true,
534
+ "type": "double"
535
+ },
536
+ {
537
+ "aggregatable": true,
538
+ "custom": false,
539
+ "defaultValue": null,
540
+ "extraTypeInfo": null,
541
+ "filterable": true,
542
+ "groupable": true,
543
+ "inlineHelpText": null,
544
+ "label": "Mailing Geocode Accuracy",
545
+ "name": "MailingGeocodeAccuracy",
546
+ "nillable": true,
547
+ "picklistValues": [
548
+ {
549
+ "active": true,
550
+ "defaultValue": false,
551
+ "label": "Address",
552
+ "validFor": null,
553
+ "value": "Address"
554
+ },
555
+ {
556
+ "active": true,
557
+ "defaultValue": false,
558
+ "label": "NearAddress",
559
+ "validFor": null,
560
+ "value": "NearAddress"
561
+ },
562
+ {
563
+ "active": true,
564
+ "defaultValue": false,
565
+ "label": "Block",
566
+ "validFor": null,
567
+ "value": "Block"
568
+ },
569
+ {
570
+ "active": true,
571
+ "defaultValue": false,
572
+ "label": "Street",
573
+ "validFor": null,
574
+ "value": "Street"
575
+ },
576
+ {
577
+ "active": true,
578
+ "defaultValue": false,
579
+ "label": "ExtendedZip",
580
+ "validFor": null,
581
+ "value": "ExtendedZip"
582
+ },
583
+ {
584
+ "active": true,
585
+ "defaultValue": false,
586
+ "label": "Zip",
587
+ "validFor": null,
588
+ "value": "Zip"
589
+ },
590
+ {
591
+ "active": true,
592
+ "defaultValue": false,
593
+ "label": "Neighborhood",
594
+ "validFor": null,
595
+ "value": "Neighborhood"
596
+ },
597
+ {
598
+ "active": true,
599
+ "defaultValue": false,
600
+ "label": "City",
601
+ "validFor": null,
602
+ "value": "City"
603
+ },
604
+ {
605
+ "active": true,
606
+ "defaultValue": false,
607
+ "label": "County",
608
+ "validFor": null,
609
+ "value": "County"
610
+ },
611
+ {
612
+ "active": true,
613
+ "defaultValue": false,
614
+ "label": "State",
615
+ "validFor": null,
616
+ "value": "State"
617
+ },
618
+ {
619
+ "active": true,
620
+ "defaultValue": false,
621
+ "label": "Unknown",
622
+ "validFor": null,
623
+ "value": "Unknown"
624
+ }
625
+ ],
626
+ "referenceTo": [],
627
+ "relationshipName": null,
628
+ "sortable": true,
629
+ "type": "picklist"
630
+ },
631
+ {
632
+ "aggregatable": false,
633
+ "custom": false,
634
+ "defaultValue": null,
635
+ "extraTypeInfo": null,
636
+ "filterable": true,
637
+ "groupable": false,
638
+ "inlineHelpText": null,
639
+ "label": "Mailing Address",
640
+ "name": "MailingAddress",
641
+ "nillable": true,
642
+ "picklistValues": [],
643
+ "referenceTo": [],
644
+ "relationshipName": null,
645
+ "sortable": false,
646
+ "type": "address"
647
+ },
648
+ {
649
+ "aggregatable": true,
650
+ "custom": false,
651
+ "defaultValue": null,
652
+ "extraTypeInfo": null,
653
+ "filterable": true,
654
+ "groupable": true,
655
+ "inlineHelpText": null,
656
+ "label": "Business Phone",
657
+ "name": "Phone",
658
+ "nillable": true,
659
+ "picklistValues": [],
660
+ "referenceTo": [],
661
+ "relationshipName": null,
662
+ "sortable": true,
663
+ "type": "phone"
664
+ },
665
+ {
666
+ "aggregatable": true,
667
+ "custom": false,
668
+ "defaultValue": null,
669
+ "extraTypeInfo": null,
670
+ "filterable": true,
671
+ "groupable": true,
672
+ "inlineHelpText": null,
673
+ "label": "Business Fax",
674
+ "name": "Fax",
675
+ "nillable": true,
676
+ "picklistValues": [],
677
+ "referenceTo": [],
678
+ "relationshipName": null,
679
+ "sortable": true,
680
+ "type": "phone"
681
+ },
682
+ {
683
+ "aggregatable": true,
684
+ "custom": false,
685
+ "defaultValue": null,
686
+ "extraTypeInfo": null,
687
+ "filterable": true,
688
+ "groupable": true,
689
+ "inlineHelpText": null,
690
+ "label": "Mobile Phone",
691
+ "name": "MobilePhone",
692
+ "nillable": true,
693
+ "picklistValues": [],
694
+ "referenceTo": [],
695
+ "relationshipName": null,
696
+ "sortable": true,
697
+ "type": "phone"
698
+ },
699
+ {
700
+ "aggregatable": true,
701
+ "custom": false,
702
+ "defaultValue": null,
703
+ "extraTypeInfo": null,
704
+ "filterable": true,
705
+ "groupable": true,
706
+ "inlineHelpText": null,
707
+ "label": "Home Phone",
708
+ "name": "HomePhone",
709
+ "nillable": true,
710
+ "picklistValues": [],
711
+ "referenceTo": [],
712
+ "relationshipName": null,
713
+ "sortable": true,
714
+ "type": "phone"
715
+ },
716
+ {
717
+ "aggregatable": true,
718
+ "custom": false,
719
+ "defaultValue": null,
720
+ "extraTypeInfo": null,
721
+ "filterable": true,
722
+ "groupable": true,
723
+ "inlineHelpText": null,
724
+ "label": "Other Phone",
725
+ "name": "OtherPhone",
726
+ "nillable": true,
727
+ "picklistValues": [],
728
+ "referenceTo": [],
729
+ "relationshipName": null,
730
+ "sortable": true,
731
+ "type": "phone"
732
+ },
733
+ {
734
+ "aggregatable": true,
735
+ "custom": false,
736
+ "defaultValue": null,
737
+ "extraTypeInfo": null,
738
+ "filterable": true,
739
+ "groupable": true,
740
+ "inlineHelpText": null,
741
+ "label": "Asst. Phone",
742
+ "name": "AssistantPhone",
743
+ "nillable": true,
744
+ "picklistValues": [],
745
+ "referenceTo": [],
746
+ "relationshipName": null,
747
+ "sortable": true,
748
+ "type": "phone"
749
+ },
750
+ {
751
+ "aggregatable": true,
752
+ "custom": false,
753
+ "defaultValue": null,
754
+ "extraTypeInfo": null,
755
+ "filterable": true,
756
+ "groupable": true,
757
+ "inlineHelpText": null,
758
+ "label": "Reports To ID",
759
+ "name": "ReportsToId",
760
+ "nillable": true,
761
+ "picklistValues": [],
762
+ "referenceTo": [
763
+ "Contact"
764
+ ],
765
+ "relationshipName": "ReportsTo",
766
+ "sortable": true,
767
+ "type": "reference"
768
+ },
769
+ {
770
+ "aggregatable": true,
771
+ "custom": false,
772
+ "defaultValue": null,
773
+ "extraTypeInfo": null,
774
+ "filterable": true,
775
+ "groupable": true,
776
+ "inlineHelpText": null,
777
+ "label": "Email",
778
+ "name": "Email",
779
+ "nillable": true,
780
+ "picklistValues": [],
781
+ "referenceTo": [],
782
+ "relationshipName": null,
783
+ "sortable": true,
784
+ "type": "email"
785
+ },
786
+ {
787
+ "aggregatable": true,
788
+ "custom": false,
789
+ "defaultValue": null,
790
+ "extraTypeInfo": null,
791
+ "filterable": true,
792
+ "groupable": true,
793
+ "inlineHelpText": null,
794
+ "label": "Title",
795
+ "name": "Title",
796
+ "nillable": true,
797
+ "picklistValues": [],
798
+ "referenceTo": [],
799
+ "relationshipName": null,
800
+ "sortable": true,
801
+ "type": "string"
802
+ },
803
+ {
804
+ "aggregatable": true,
805
+ "custom": false,
806
+ "defaultValue": null,
807
+ "extraTypeInfo": null,
808
+ "filterable": true,
809
+ "groupable": true,
810
+ "inlineHelpText": null,
811
+ "label": "Department",
812
+ "name": "Department",
813
+ "nillable": true,
814
+ "picklistValues": [],
815
+ "referenceTo": [],
816
+ "relationshipName": null,
817
+ "sortable": true,
818
+ "type": "string"
819
+ },
820
+ {
821
+ "aggregatable": true,
822
+ "custom": false,
823
+ "defaultValue": null,
824
+ "extraTypeInfo": null,
825
+ "filterable": true,
826
+ "groupable": true,
827
+ "inlineHelpText": null,
828
+ "label": "Assistant's Name",
829
+ "name": "AssistantName",
830
+ "nillable": true,
831
+ "picklistValues": [],
832
+ "referenceTo": [],
833
+ "relationshipName": null,
834
+ "sortable": true,
835
+ "type": "string"
836
+ },
837
+ {
838
+ "aggregatable": true,
839
+ "custom": false,
840
+ "defaultValue": null,
841
+ "extraTypeInfo": null,
842
+ "filterable": true,
843
+ "groupable": true,
844
+ "inlineHelpText": null,
845
+ "label": "Lead Source",
846
+ "name": "LeadSource",
847
+ "nillable": true,
848
+ "picklistValues": [
849
+ {
850
+ "active": true,
851
+ "defaultValue": false,
852
+ "label": "Web",
853
+ "validFor": null,
854
+ "value": "Web"
855
+ },
856
+ {
857
+ "active": true,
858
+ "defaultValue": false,
859
+ "label": "Phone Inquiry",
860
+ "validFor": null,
861
+ "value": "Phone Inquiry"
862
+ },
863
+ {
864
+ "active": true,
865
+ "defaultValue": false,
866
+ "label": "Partner Referral",
867
+ "validFor": null,
868
+ "value": "Partner Referral"
869
+ },
870
+ {
871
+ "active": true,
872
+ "defaultValue": false,
873
+ "label": "Purchased List",
874
+ "validFor": null,
875
+ "value": "Purchased List"
876
+ },
877
+ {
878
+ "active": true,
879
+ "defaultValue": false,
880
+ "label": "Other",
881
+ "validFor": null,
882
+ "value": "Other"
883
+ }
884
+ ],
885
+ "referenceTo": [],
886
+ "relationshipName": null,
887
+ "sortable": true,
888
+ "type": "picklist"
889
+ },
890
+ {
891
+ "aggregatable": true,
892
+ "custom": false,
893
+ "defaultValue": null,
894
+ "extraTypeInfo": null,
895
+ "filterable": true,
896
+ "groupable": true,
897
+ "inlineHelpText": null,
898
+ "label": "Birthdate",
899
+ "name": "Birthdate",
900
+ "nillable": true,
901
+ "picklistValues": [],
902
+ "referenceTo": [],
903
+ "relationshipName": null,
904
+ "sortable": true,
905
+ "type": "date"
906
+ },
907
+ {
908
+ "aggregatable": false,
909
+ "custom": false,
910
+ "defaultValue": null,
911
+ "extraTypeInfo": "plaintextarea",
912
+ "filterable": false,
913
+ "groupable": false,
914
+ "inlineHelpText": null,
915
+ "label": "Contact Description",
916
+ "name": "Description",
917
+ "nillable": true,
918
+ "picklistValues": [],
919
+ "referenceTo": [],
920
+ "relationshipName": null,
921
+ "sortable": false,
922
+ "type": "textarea"
923
+ },
924
+ {
925
+ "aggregatable": true,
926
+ "custom": false,
927
+ "defaultValue": null,
928
+ "extraTypeInfo": null,
929
+ "filterable": true,
930
+ "groupable": true,
931
+ "inlineHelpText": null,
932
+ "label": "Owner ID",
933
+ "name": "OwnerId",
934
+ "nillable": false,
935
+ "picklistValues": [],
936
+ "referenceTo": [
937
+ "User"
938
+ ],
939
+ "relationshipName": "Owner",
940
+ "sortable": true,
941
+ "type": "reference"
942
+ },
943
+ {
944
+ "aggregatable": true,
945
+ "custom": false,
946
+ "defaultValue": null,
947
+ "extraTypeInfo": null,
948
+ "filterable": true,
949
+ "groupable": false,
950
+ "inlineHelpText": null,
951
+ "label": "Created Date",
952
+ "name": "CreatedDate",
953
+ "nillable": false,
954
+ "picklistValues": [],
955
+ "referenceTo": [],
956
+ "relationshipName": null,
957
+ "sortable": true,
958
+ "type": "datetime"
959
+ },
960
+ {
961
+ "aggregatable": true,
962
+ "custom": false,
963
+ "defaultValue": null,
964
+ "extraTypeInfo": null,
965
+ "filterable": true,
966
+ "groupable": true,
967
+ "inlineHelpText": null,
968
+ "label": "Created By ID",
969
+ "name": "CreatedById",
970
+ "nillable": false,
971
+ "picklistValues": [],
972
+ "referenceTo": [
973
+ "User"
974
+ ],
975
+ "relationshipName": "CreatedBy",
976
+ "sortable": true,
977
+ "type": "reference"
978
+ },
979
+ {
980
+ "aggregatable": true,
981
+ "custom": false,
982
+ "defaultValue": null,
983
+ "extraTypeInfo": null,
984
+ "filterable": true,
985
+ "groupable": false,
986
+ "inlineHelpText": null,
987
+ "label": "Last Modified Date",
988
+ "name": "LastModifiedDate",
989
+ "nillable": false,
990
+ "picklistValues": [],
991
+ "referenceTo": [],
992
+ "relationshipName": null,
993
+ "sortable": true,
994
+ "type": "datetime"
995
+ },
996
+ {
997
+ "aggregatable": true,
998
+ "custom": false,
999
+ "defaultValue": null,
1000
+ "extraTypeInfo": null,
1001
+ "filterable": true,
1002
+ "groupable": true,
1003
+ "inlineHelpText": null,
1004
+ "label": "Last Modified By ID",
1005
+ "name": "LastModifiedById",
1006
+ "nillable": false,
1007
+ "picklistValues": [],
1008
+ "referenceTo": [
1009
+ "User"
1010
+ ],
1011
+ "relationshipName": "LastModifiedBy",
1012
+ "sortable": true,
1013
+ "type": "reference"
1014
+ },
1015
+ {
1016
+ "aggregatable": true,
1017
+ "custom": false,
1018
+ "defaultValue": null,
1019
+ "extraTypeInfo": null,
1020
+ "filterable": true,
1021
+ "groupable": false,
1022
+ "inlineHelpText": null,
1023
+ "label": "System Modstamp",
1024
+ "name": "SystemModstamp",
1025
+ "nillable": false,
1026
+ "picklistValues": [],
1027
+ "referenceTo": [],
1028
+ "relationshipName": null,
1029
+ "sortable": true,
1030
+ "type": "datetime"
1031
+ },
1032
+ {
1033
+ "aggregatable": true,
1034
+ "custom": false,
1035
+ "defaultValue": null,
1036
+ "extraTypeInfo": null,
1037
+ "filterable": true,
1038
+ "groupable": true,
1039
+ "inlineHelpText": null,
1040
+ "label": "Last Activity",
1041
+ "name": "LastActivityDate",
1042
+ "nillable": true,
1043
+ "picklistValues": [],
1044
+ "referenceTo": [],
1045
+ "relationshipName": null,
1046
+ "sortable": true,
1047
+ "type": "date"
1048
+ },
1049
+ {
1050
+ "aggregatable": true,
1051
+ "custom": false,
1052
+ "defaultValue": null,
1053
+ "extraTypeInfo": null,
1054
+ "filterable": true,
1055
+ "groupable": false,
1056
+ "inlineHelpText": null,
1057
+ "label": "Last Stay-in-Touch Request Date",
1058
+ "name": "LastCURequestDate",
1059
+ "nillable": true,
1060
+ "picklistValues": [],
1061
+ "referenceTo": [],
1062
+ "relationshipName": null,
1063
+ "sortable": true,
1064
+ "type": "datetime"
1065
+ },
1066
+ {
1067
+ "aggregatable": true,
1068
+ "custom": false,
1069
+ "defaultValue": null,
1070
+ "extraTypeInfo": null,
1071
+ "filterable": true,
1072
+ "groupable": false,
1073
+ "inlineHelpText": null,
1074
+ "label": "Last Stay-in-Touch Save Date",
1075
+ "name": "LastCUUpdateDate",
1076
+ "nillable": true,
1077
+ "picklistValues": [],
1078
+ "referenceTo": [],
1079
+ "relationshipName": null,
1080
+ "sortable": true,
1081
+ "type": "datetime"
1082
+ },
1083
+ {
1084
+ "aggregatable": true,
1085
+ "custom": false,
1086
+ "defaultValue": null,
1087
+ "extraTypeInfo": null,
1088
+ "filterable": true,
1089
+ "groupable": false,
1090
+ "inlineHelpText": null,
1091
+ "label": "Last Viewed Date",
1092
+ "name": "LastViewedDate",
1093
+ "nillable": true,
1094
+ "picklistValues": [],
1095
+ "referenceTo": [],
1096
+ "relationshipName": null,
1097
+ "sortable": true,
1098
+ "type": "datetime"
1099
+ },
1100
+ {
1101
+ "aggregatable": true,
1102
+ "custom": false,
1103
+ "defaultValue": null,
1104
+ "extraTypeInfo": null,
1105
+ "filterable": true,
1106
+ "groupable": false,
1107
+ "inlineHelpText": null,
1108
+ "label": "Last Referenced Date",
1109
+ "name": "LastReferencedDate",
1110
+ "nillable": true,
1111
+ "picklistValues": [],
1112
+ "referenceTo": [],
1113
+ "relationshipName": null,
1114
+ "sortable": true,
1115
+ "type": "datetime"
1116
+ },
1117
+ {
1118
+ "aggregatable": true,
1119
+ "custom": false,
1120
+ "defaultValue": null,
1121
+ "extraTypeInfo": null,
1122
+ "filterable": true,
1123
+ "groupable": true,
1124
+ "inlineHelpText": null,
1125
+ "label": "Email Bounced Reason",
1126
+ "name": "EmailBouncedReason",
1127
+ "nillable": true,
1128
+ "picklistValues": [],
1129
+ "referenceTo": [],
1130
+ "relationshipName": null,
1131
+ "sortable": true,
1132
+ "type": "string"
1133
+ },
1134
+ {
1135
+ "aggregatable": true,
1136
+ "custom": false,
1137
+ "defaultValue": null,
1138
+ "extraTypeInfo": null,
1139
+ "filterable": true,
1140
+ "groupable": false,
1141
+ "inlineHelpText": null,
1142
+ "label": "Email Bounced Date",
1143
+ "name": "EmailBouncedDate",
1144
+ "nillable": true,
1145
+ "picklistValues": [],
1146
+ "referenceTo": [],
1147
+ "relationshipName": null,
1148
+ "sortable": true,
1149
+ "type": "datetime"
1150
+ },
1151
+ {
1152
+ "aggregatable": false,
1153
+ "custom": false,
1154
+ "defaultValue": null,
1155
+ "extraTypeInfo": null,
1156
+ "filterable": true,
1157
+ "groupable": true,
1158
+ "inlineHelpText": null,
1159
+ "label": "Is Email Bounced",
1160
+ "name": "IsEmailBounced",
1161
+ "nillable": false,
1162
+ "picklistValues": [],
1163
+ "referenceTo": [],
1164
+ "relationshipName": null,
1165
+ "sortable": true,
1166
+ "type": "boolean"
1167
+ },
1168
+ {
1169
+ "aggregatable": true,
1170
+ "custom": false,
1171
+ "defaultValue": null,
1172
+ "extraTypeInfo": "imageurl",
1173
+ "filterable": true,
1174
+ "groupable": true,
1175
+ "inlineHelpText": null,
1176
+ "label": "Photo URL",
1177
+ "name": "PhotoUrl",
1178
+ "nillable": true,
1179
+ "picklistValues": [],
1180
+ "referenceTo": [],
1181
+ "relationshipName": null,
1182
+ "sortable": true,
1183
+ "type": "url"
1184
+ },
1185
+ {
1186
+ "aggregatable": true,
1187
+ "custom": false,
1188
+ "defaultValue": null,
1189
+ "extraTypeInfo": null,
1190
+ "filterable": true,
1191
+ "groupable": true,
1192
+ "inlineHelpText": null,
1193
+ "label": "Data.com Key",
1194
+ "name": "Jigsaw",
1195
+ "nillable": true,
1196
+ "picklistValues": [],
1197
+ "referenceTo": [],
1198
+ "relationshipName": null,
1199
+ "sortable": true,
1200
+ "type": "string"
1201
+ },
1202
+ {
1203
+ "aggregatable": true,
1204
+ "custom": false,
1205
+ "defaultValue": null,
1206
+ "extraTypeInfo": null,
1207
+ "filterable": true,
1208
+ "groupable": true,
1209
+ "inlineHelpText": null,
1210
+ "label": "Jigsaw Contact ID",
1211
+ "name": "JigsawContactId",
1212
+ "nillable": true,
1213
+ "picklistValues": [],
1214
+ "referenceTo": [],
1215
+ "relationshipName": "JigsawContact",
1216
+ "sortable": true,
1217
+ "type": "string"
1218
+ },
1219
+ {
1220
+ "aggregatable": true,
1221
+ "custom": false,
1222
+ "defaultValue": null,
1223
+ "extraTypeInfo": null,
1224
+ "filterable": true,
1225
+ "groupable": true,
1226
+ "inlineHelpText": null,
1227
+ "label": "Clean Status",
1228
+ "name": "CleanStatus",
1229
+ "nillable": true,
1230
+ "picklistValues": [
1231
+ {
1232
+ "active": true,
1233
+ "defaultValue": false,
1234
+ "label": "In Sync",
1235
+ "validFor": null,
1236
+ "value": "Matched"
1237
+ },
1238
+ {
1239
+ "active": true,
1240
+ "defaultValue": false,
1241
+ "label": "Different",
1242
+ "validFor": null,
1243
+ "value": "Different"
1244
+ },
1245
+ {
1246
+ "active": true,
1247
+ "defaultValue": false,
1248
+ "label": "Reviewed",
1249
+ "validFor": null,
1250
+ "value": "Acknowledged"
1251
+ },
1252
+ {
1253
+ "active": true,
1254
+ "defaultValue": false,
1255
+ "label": "Not Found",
1256
+ "validFor": null,
1257
+ "value": "NotFound"
1258
+ },
1259
+ {
1260
+ "active": true,
1261
+ "defaultValue": false,
1262
+ "label": "Inactive",
1263
+ "validFor": null,
1264
+ "value": "Inactive"
1265
+ },
1266
+ {
1267
+ "active": true,
1268
+ "defaultValue": false,
1269
+ "label": "Not Compared",
1270
+ "validFor": null,
1271
+ "value": "Pending"
1272
+ },
1273
+ {
1274
+ "active": true,
1275
+ "defaultValue": false,
1276
+ "label": "Select Match",
1277
+ "validFor": null,
1278
+ "value": "SelectMatch"
1279
+ },
1280
+ {
1281
+ "active": true,
1282
+ "defaultValue": false,
1283
+ "label": "Skipped",
1284
+ "validFor": null,
1285
+ "value": "Skipped"
1286
+ }
1287
+ ],
1288
+ "referenceTo": [],
1289
+ "relationshipName": null,
1290
+ "sortable": true,
1291
+ "type": "picklist"
1292
+ },
1293
+ {
1294
+ "aggregatable": true,
1295
+ "custom": false,
1296
+ "defaultValue": null,
1297
+ "extraTypeInfo": null,
1298
+ "filterable": true,
1299
+ "groupable": true,
1300
+ "inlineHelpText": null,
1301
+ "label": "Individual ID",
1302
+ "name": "IndividualId",
1303
+ "nillable": true,
1304
+ "picklistValues": [],
1305
+ "referenceTo": [
1306
+ "Individual"
1307
+ ],
1308
+ "relationshipName": "Individual",
1309
+ "sortable": true,
1310
+ "type": "reference"
1311
+ }
1312
+ ],
1313
+ "label": "Contact",
1314
+ "childRelationships": [
1315
+ {
1316
+ "cascadeDelete": true,
1317
+ "childSObject": "AIInsightValue",
1318
+ "deprecatedAndHidden": false,
1319
+ "field": "SobjectLookupValueId",
1320
+ "junctionIdListNames": [],
1321
+ "junctionReferenceTo": [],
1322
+ "relationshipName": null,
1323
+ "restrictedDelete": false
1324
+ },
1325
+ {
1326
+ "cascadeDelete": true,
1327
+ "childSObject": "AIRecordInsight",
1328
+ "deprecatedAndHidden": false,
1329
+ "field": "TargetId",
1330
+ "junctionIdListNames": [],
1331
+ "junctionReferenceTo": [],
1332
+ "relationshipName": null,
1333
+ "restrictedDelete": false
1334
+ },
1335
+ {
1336
+ "cascadeDelete": false,
1337
+ "childSObject": "AcceptedEventRelation",
1338
+ "deprecatedAndHidden": false,
1339
+ "field": "RelationId",
1340
+ "junctionIdListNames": [],
1341
+ "junctionReferenceTo": [],
1342
+ "relationshipName": "AcceptedEventRelations",
1343
+ "restrictedDelete": false
1344
+ },
1345
+ {
1346
+ "cascadeDelete": true,
1347
+ "childSObject": "AccountContactRole",
1348
+ "deprecatedAndHidden": false,
1349
+ "field": "ContactId",
1350
+ "junctionIdListNames": [],
1351
+ "junctionReferenceTo": [],
1352
+ "relationshipName": "AccountContactRoles",
1353
+ "restrictedDelete": false
1354
+ },
1355
+ {
1356
+ "cascadeDelete": false,
1357
+ "childSObject": "AccountContactRoleChangeEvent",
1358
+ "deprecatedAndHidden": false,
1359
+ "field": "ContactId",
1360
+ "junctionIdListNames": [],
1361
+ "junctionReferenceTo": [],
1362
+ "relationshipName": null,
1363
+ "restrictedDelete": false
1364
+ },
1365
+ {
1366
+ "cascadeDelete": true,
1367
+ "childSObject": "ActivityHistory",
1368
+ "deprecatedAndHidden": false,
1369
+ "field": "WhoId",
1370
+ "junctionIdListNames": [],
1371
+ "junctionReferenceTo": [],
1372
+ "relationshipName": "ActivityHistories",
1373
+ "restrictedDelete": false
1374
+ },
1375
+ {
1376
+ "cascadeDelete": true,
1377
+ "childSObject": "Asset",
1378
+ "deprecatedAndHidden": false,
1379
+ "field": "ContactId",
1380
+ "junctionIdListNames": [],
1381
+ "junctionReferenceTo": [],
1382
+ "relationshipName": "Assets",
1383
+ "restrictedDelete": false
1384
+ },
1385
+ {
1386
+ "cascadeDelete": false,
1387
+ "childSObject": "AssetChangeEvent",
1388
+ "deprecatedAndHidden": false,
1389
+ "field": "ContactId",
1390
+ "junctionIdListNames": [],
1391
+ "junctionReferenceTo": [],
1392
+ "relationshipName": null,
1393
+ "restrictedDelete": false
1394
+ },
1395
+ {
1396
+ "cascadeDelete": true,
1397
+ "childSObject": "AttachedContentDocument",
1398
+ "deprecatedAndHidden": false,
1399
+ "field": "LinkedEntityId",
1400
+ "junctionIdListNames": [],
1401
+ "junctionReferenceTo": [],
1402
+ "relationshipName": "AttachedContentDocuments",
1403
+ "restrictedDelete": false
1404
+ },
1405
+ {
1406
+ "cascadeDelete": true,
1407
+ "childSObject": "Attachment",
1408
+ "deprecatedAndHidden": false,
1409
+ "field": "ParentId",
1410
+ "junctionIdListNames": [],
1411
+ "junctionReferenceTo": [],
1412
+ "relationshipName": "Attachments",
1413
+ "restrictedDelete": false
1414
+ },
1415
+ {
1416
+ "cascadeDelete": false,
1417
+ "childSObject": "AuthorizationFormConsent",
1418
+ "deprecatedAndHidden": false,
1419
+ "field": "ConsentGiverId",
1420
+ "junctionIdListNames": [],
1421
+ "junctionReferenceTo": [],
1422
+ "relationshipName": "AuthorizationFormConsents",
1423
+ "restrictedDelete": true
1424
+ },
1425
+ {
1426
+ "cascadeDelete": false,
1427
+ "childSObject": "AuthorizationFormConsentChangeEvent",
1428
+ "deprecatedAndHidden": false,
1429
+ "field": "ConsentGiverId",
1430
+ "junctionIdListNames": [],
1431
+ "junctionReferenceTo": [],
1432
+ "relationshipName": null,
1433
+ "restrictedDelete": false
1434
+ },
1435
+ {
1436
+ "cascadeDelete": true,
1437
+ "childSObject": "CampaignMember",
1438
+ "deprecatedAndHidden": false,
1439
+ "field": "ContactId",
1440
+ "junctionIdListNames": [],
1441
+ "junctionReferenceTo": [],
1442
+ "relationshipName": "CampaignMembers",
1443
+ "restrictedDelete": false
1444
+ },
1445
+ {
1446
+ "cascadeDelete": false,
1447
+ "childSObject": "CampaignMember",
1448
+ "deprecatedAndHidden": false,
1449
+ "field": "LeadOrContactId",
1450
+ "junctionIdListNames": [],
1451
+ "junctionReferenceTo": [],
1452
+ "relationshipName": null,
1453
+ "restrictedDelete": false
1454
+ },
1455
+ {
1456
+ "cascadeDelete": false,
1457
+ "childSObject": "CampaignMemberChangeEvent",
1458
+ "deprecatedAndHidden": false,
1459
+ "field": "ContactId",
1460
+ "junctionIdListNames": [],
1461
+ "junctionReferenceTo": [],
1462
+ "relationshipName": null,
1463
+ "restrictedDelete": false
1464
+ },
1465
+ {
1466
+ "cascadeDelete": false,
1467
+ "childSObject": "Case",
1468
+ "deprecatedAndHidden": false,
1469
+ "field": "ContactId",
1470
+ "junctionIdListNames": [],
1471
+ "junctionReferenceTo": [],
1472
+ "relationshipName": "Cases",
1473
+ "restrictedDelete": true
1474
+ },
1475
+ {
1476
+ "cascadeDelete": false,
1477
+ "childSObject": "CaseChangeEvent",
1478
+ "deprecatedAndHidden": false,
1479
+ "field": "ContactId",
1480
+ "junctionIdListNames": [],
1481
+ "junctionReferenceTo": [],
1482
+ "relationshipName": null,
1483
+ "restrictedDelete": false
1484
+ },
1485
+ {
1486
+ "cascadeDelete": true,
1487
+ "childSObject": "CaseContactRole",
1488
+ "deprecatedAndHidden": false,
1489
+ "field": "ContactId",
1490
+ "junctionIdListNames": [],
1491
+ "junctionReferenceTo": [],
1492
+ "relationshipName": "CaseContactRoles",
1493
+ "restrictedDelete": false
1494
+ },
1495
+ {
1496
+ "cascadeDelete": true,
1497
+ "childSObject": "CaseTeamMember",
1498
+ "deprecatedAndHidden": false,
1499
+ "field": "MemberId",
1500
+ "junctionIdListNames": [],
1501
+ "junctionReferenceTo": [],
1502
+ "relationshipName": null,
1503
+ "restrictedDelete": false
1504
+ },
1505
+ {
1506
+ "cascadeDelete": true,
1507
+ "childSObject": "CaseTeamTemplateMember",
1508
+ "deprecatedAndHidden": false,
1509
+ "field": "MemberId",
1510
+ "junctionIdListNames": [],
1511
+ "junctionReferenceTo": [],
1512
+ "relationshipName": null,
1513
+ "restrictedDelete": false
1514
+ },
1515
+ {
1516
+ "cascadeDelete": true,
1517
+ "childSObject": "CollaborationGroupRecord",
1518
+ "deprecatedAndHidden": false,
1519
+ "field": "RecordId",
1520
+ "junctionIdListNames": [],
1521
+ "junctionReferenceTo": [],
1522
+ "relationshipName": "RecordAssociatedGroups",
1523
+ "restrictedDelete": false
1524
+ },
1525
+ {
1526
+ "cascadeDelete": true,
1527
+ "childSObject": "CombinedAttachment",
1528
+ "deprecatedAndHidden": false,
1529
+ "field": "ParentId",
1530
+ "junctionIdListNames": [],
1531
+ "junctionReferenceTo": [],
1532
+ "relationshipName": "CombinedAttachments",
1533
+ "restrictedDelete": false
1534
+ },
1535
+ {
1536
+ "cascadeDelete": false,
1537
+ "childSObject": "CommSubscriptionConsent",
1538
+ "deprecatedAndHidden": false,
1539
+ "field": "ConsentGiverId",
1540
+ "junctionIdListNames": [],
1541
+ "junctionReferenceTo": [],
1542
+ "relationshipName": "CommSubscriptionConsents",
1543
+ "restrictedDelete": true
1544
+ },
1545
+ {
1546
+ "cascadeDelete": false,
1547
+ "childSObject": "CommSubscriptionConsentChangeEvent",
1548
+ "deprecatedAndHidden": false,
1549
+ "field": "ConsentGiverId",
1550
+ "junctionIdListNames": [],
1551
+ "junctionReferenceTo": [],
1552
+ "relationshipName": null,
1553
+ "restrictedDelete": false
1554
+ },
1555
+ {
1556
+ "cascadeDelete": false,
1557
+ "childSObject": "Contact",
1558
+ "deprecatedAndHidden": false,
1559
+ "field": "ReportsToId",
1560
+ "junctionIdListNames": [],
1561
+ "junctionReferenceTo": [],
1562
+ "relationshipName": null,
1563
+ "restrictedDelete": false
1564
+ },
1565
+ {
1566
+ "cascadeDelete": false,
1567
+ "childSObject": "ContactChangeEvent",
1568
+ "deprecatedAndHidden": false,
1569
+ "field": "ReportsToId",
1570
+ "junctionIdListNames": [],
1571
+ "junctionReferenceTo": [],
1572
+ "relationshipName": null,
1573
+ "restrictedDelete": false
1574
+ },
1575
+ {
1576
+ "cascadeDelete": true,
1577
+ "childSObject": "ContactCleanInfo",
1578
+ "deprecatedAndHidden": false,
1579
+ "field": "ContactId",
1580
+ "junctionIdListNames": [],
1581
+ "junctionReferenceTo": [],
1582
+ "relationshipName": "ContactCleanInfos",
1583
+ "restrictedDelete": false
1584
+ },
1585
+ {
1586
+ "cascadeDelete": true,
1587
+ "childSObject": "ContactFeed",
1588
+ "deprecatedAndHidden": false,
1589
+ "field": "ParentId",
1590
+ "junctionIdListNames": [],
1591
+ "junctionReferenceTo": [],
1592
+ "relationshipName": "Feeds",
1593
+ "restrictedDelete": false
1594
+ },
1595
+ {
1596
+ "cascadeDelete": true,
1597
+ "childSObject": "ContactHistory",
1598
+ "deprecatedAndHidden": false,
1599
+ "field": "ContactId",
1600
+ "junctionIdListNames": [],
1601
+ "junctionReferenceTo": [],
1602
+ "relationshipName": "Histories",
1603
+ "restrictedDelete": false
1604
+ },
1605
+ {
1606
+ "cascadeDelete": false,
1607
+ "childSObject": "ContactRequest",
1608
+ "deprecatedAndHidden": false,
1609
+ "field": "WhoId",
1610
+ "junctionIdListNames": [],
1611
+ "junctionReferenceTo": [],
1612
+ "relationshipName": "ContactRequests",
1613
+ "restrictedDelete": false
1614
+ },
1615
+ {
1616
+ "cascadeDelete": true,
1617
+ "childSObject": "ContactShare",
1618
+ "deprecatedAndHidden": false,
1619
+ "field": "ContactId",
1620
+ "junctionIdListNames": [],
1621
+ "junctionReferenceTo": [],
1622
+ "relationshipName": "Shares",
1623
+ "restrictedDelete": false
1624
+ },
1625
+ {
1626
+ "cascadeDelete": true,
1627
+ "childSObject": "ContentDistribution",
1628
+ "deprecatedAndHidden": false,
1629
+ "field": "RelatedRecordId",
1630
+ "junctionIdListNames": [],
1631
+ "junctionReferenceTo": [],
1632
+ "relationshipName": null,
1633
+ "restrictedDelete": false
1634
+ },
1635
+ {
1636
+ "cascadeDelete": true,
1637
+ "childSObject": "ContentDocumentLink",
1638
+ "deprecatedAndHidden": false,
1639
+ "field": "LinkedEntityId",
1640
+ "junctionIdListNames": [],
1641
+ "junctionReferenceTo": [],
1642
+ "relationshipName": "ContentDocumentLinks",
1643
+ "restrictedDelete": false
1644
+ },
1645
+ {
1646
+ "cascadeDelete": false,
1647
+ "childSObject": "ContentDocumentLinkChangeEvent",
1648
+ "deprecatedAndHidden": false,
1649
+ "field": "LinkedEntityId",
1650
+ "junctionIdListNames": [],
1651
+ "junctionReferenceTo": [],
1652
+ "relationshipName": null,
1653
+ "restrictedDelete": false
1654
+ },
1655
+ {
1656
+ "cascadeDelete": false,
1657
+ "childSObject": "ContentVersion",
1658
+ "deprecatedAndHidden": false,
1659
+ "field": "FirstPublishLocationId",
1660
+ "junctionIdListNames": [],
1661
+ "junctionReferenceTo": [],
1662
+ "relationshipName": null,
1663
+ "restrictedDelete": false
1664
+ },
1665
+ {
1666
+ "cascadeDelete": false,
1667
+ "childSObject": "ContentVersionChangeEvent",
1668
+ "deprecatedAndHidden": false,
1669
+ "field": "FirstPublishLocationId",
1670
+ "junctionIdListNames": [],
1671
+ "junctionReferenceTo": [],
1672
+ "relationshipName": null,
1673
+ "restrictedDelete": false
1674
+ },
1675
+ {
1676
+ "cascadeDelete": false,
1677
+ "childSObject": "Contract",
1678
+ "deprecatedAndHidden": false,
1679
+ "field": "CustomerSignedId",
1680
+ "junctionIdListNames": [],
1681
+ "junctionReferenceTo": [],
1682
+ "relationshipName": "ContractsSigned",
1683
+ "restrictedDelete": true
1684
+ },
1685
+ {
1686
+ "cascadeDelete": false,
1687
+ "childSObject": "ContractChangeEvent",
1688
+ "deprecatedAndHidden": false,
1689
+ "field": "CustomerSignedId",
1690
+ "junctionIdListNames": [],
1691
+ "junctionReferenceTo": [],
1692
+ "relationshipName": null,
1693
+ "restrictedDelete": false
1694
+ },
1695
+ {
1696
+ "cascadeDelete": true,
1697
+ "childSObject": "ContractContactRole",
1698
+ "deprecatedAndHidden": false,
1699
+ "field": "ContactId",
1700
+ "junctionIdListNames": [],
1701
+ "junctionReferenceTo": [],
1702
+ "relationshipName": "ContractContactRoles",
1703
+ "restrictedDelete": false
1704
+ },
1705
+ {
1706
+ "cascadeDelete": false,
1707
+ "childSObject": "ConversationParticipant",
1708
+ "deprecatedAndHidden": false,
1709
+ "field": "ParticipantEntityId",
1710
+ "junctionIdListNames": [],
1711
+ "junctionReferenceTo": [],
1712
+ "relationshipName": "ConversationParticipants",
1713
+ "restrictedDelete": false
1714
+ },
1715
+ {
1716
+ "cascadeDelete": false,
1717
+ "childSObject": "CreditMemo",
1718
+ "deprecatedAndHidden": false,
1719
+ "field": "BillToContactId",
1720
+ "junctionIdListNames": [],
1721
+ "junctionReferenceTo": [],
1722
+ "relationshipName": "CreditMemos",
1723
+ "restrictedDelete": false
1724
+ },
1725
+ {
1726
+ "cascadeDelete": false,
1727
+ "childSObject": "DeclinedEventRelation",
1728
+ "deprecatedAndHidden": false,
1729
+ "field": "RelationId",
1730
+ "junctionIdListNames": [],
1731
+ "junctionReferenceTo": [],
1732
+ "relationshipName": "DeclinedEventRelations",
1733
+ "restrictedDelete": false
1734
+ },
1735
+ {
1736
+ "cascadeDelete": true,
1737
+ "childSObject": "DuplicateRecordItem",
1738
+ "deprecatedAndHidden": false,
1739
+ "field": "RecordId",
1740
+ "junctionIdListNames": [],
1741
+ "junctionReferenceTo": [],
1742
+ "relationshipName": "DuplicateRecordItems",
1743
+ "restrictedDelete": false
1744
+ },
1745
+ {
1746
+ "cascadeDelete": true,
1747
+ "childSObject": "EmailMessageRelation",
1748
+ "deprecatedAndHidden": false,
1749
+ "field": "RelationId",
1750
+ "junctionIdListNames": [],
1751
+ "junctionReferenceTo": [],
1752
+ "relationshipName": "EmailMessageRelations",
1753
+ "restrictedDelete": false
1754
+ },
1755
+ {
1756
+ "cascadeDelete": true,
1757
+ "childSObject": "EmailStatus",
1758
+ "deprecatedAndHidden": false,
1759
+ "field": "WhoId",
1760
+ "junctionIdListNames": [],
1761
+ "junctionReferenceTo": [],
1762
+ "relationshipName": "EmailStatuses",
1763
+ "restrictedDelete": false
1764
+ },
1765
+ {
1766
+ "cascadeDelete": true,
1767
+ "childSObject": "EntitlementContact",
1768
+ "deprecatedAndHidden": false,
1769
+ "field": "ContactId",
1770
+ "junctionIdListNames": [],
1771
+ "junctionReferenceTo": [],
1772
+ "relationshipName": "EntitlementContacts",
1773
+ "restrictedDelete": false
1774
+ },
1775
+ {
1776
+ "cascadeDelete": true,
1777
+ "childSObject": "EntitySubscription",
1778
+ "deprecatedAndHidden": false,
1779
+ "field": "ParentId",
1780
+ "junctionIdListNames": [],
1781
+ "junctionReferenceTo": [],
1782
+ "relationshipName": "FeedSubscriptionsForEntity",
1783
+ "restrictedDelete": false
1784
+ },
1785
+ {
1786
+ "cascadeDelete": true,
1787
+ "childSObject": "Event",
1788
+ "deprecatedAndHidden": false,
1789
+ "field": "WhoId",
1790
+ "junctionIdListNames": [],
1791
+ "junctionReferenceTo": [],
1792
+ "relationshipName": "Events",
1793
+ "restrictedDelete": false
1794
+ },
1795
+ {
1796
+ "cascadeDelete": false,
1797
+ "childSObject": "EventChangeEvent",
1798
+ "deprecatedAndHidden": false,
1799
+ "field": "WhoId",
1800
+ "junctionIdListNames": [],
1801
+ "junctionReferenceTo": [],
1802
+ "relationshipName": null,
1803
+ "restrictedDelete": false
1804
+ },
1805
+ {
1806
+ "cascadeDelete": true,
1807
+ "childSObject": "EventRelation",
1808
+ "deprecatedAndHidden": false,
1809
+ "field": "RelationId",
1810
+ "junctionIdListNames": [],
1811
+ "junctionReferenceTo": [],
1812
+ "relationshipName": "EventRelations",
1813
+ "restrictedDelete": false
1814
+ },
1815
+ {
1816
+ "cascadeDelete": false,
1817
+ "childSObject": "EventRelationChangeEvent",
1818
+ "deprecatedAndHidden": false,
1819
+ "field": "RelationId",
1820
+ "junctionIdListNames": [],
1821
+ "junctionReferenceTo": [],
1822
+ "relationshipName": null,
1823
+ "restrictedDelete": false
1824
+ },
1825
+ {
1826
+ "cascadeDelete": false,
1827
+ "childSObject": "FeedComment",
1828
+ "deprecatedAndHidden": false,
1829
+ "field": "ParentId",
1830
+ "junctionIdListNames": [],
1831
+ "junctionReferenceTo": [],
1832
+ "relationshipName": null,
1833
+ "restrictedDelete": false
1834
+ },
1835
+ {
1836
+ "cascadeDelete": true,
1837
+ "childSObject": "FeedItem",
1838
+ "deprecatedAndHidden": false,
1839
+ "field": "ParentId",
1840
+ "junctionIdListNames": [],
1841
+ "junctionReferenceTo": [],
1842
+ "relationshipName": null,
1843
+ "restrictedDelete": false
1844
+ },
1845
+ {
1846
+ "cascadeDelete": false,
1847
+ "childSObject": "FlowExecutionErrorEvent",
1848
+ "deprecatedAndHidden": false,
1849
+ "field": "ContextRecordId",
1850
+ "junctionIdListNames": [],
1851
+ "junctionReferenceTo": [],
1852
+ "relationshipName": null,
1853
+ "restrictedDelete": false
1854
+ },
1855
+ {
1856
+ "cascadeDelete": false,
1857
+ "childSObject": "FlowOrchestrationWorkItem",
1858
+ "deprecatedAndHidden": false,
1859
+ "field": "RelatedRecordId",
1860
+ "junctionIdListNames": [],
1861
+ "junctionReferenceTo": [],
1862
+ "relationshipName": null,
1863
+ "restrictedDelete": false
1864
+ },
1865
+ {
1866
+ "cascadeDelete": false,
1867
+ "childSObject": "FlowRecordRelation",
1868
+ "deprecatedAndHidden": false,
1869
+ "field": "RelatedRecordId",
1870
+ "junctionIdListNames": [],
1871
+ "junctionReferenceTo": [],
1872
+ "relationshipName": null,
1873
+ "restrictedDelete": false
1874
+ },
1875
+ {
1876
+ "cascadeDelete": false,
1877
+ "childSObject": "Invoice",
1878
+ "deprecatedAndHidden": false,
1879
+ "field": "BillToContactId",
1880
+ "junctionIdListNames": [],
1881
+ "junctionReferenceTo": [],
1882
+ "relationshipName": "Invoices",
1883
+ "restrictedDelete": false
1884
+ },
1885
+ {
1886
+ "cascadeDelete": false,
1887
+ "childSObject": "Lead",
1888
+ "deprecatedAndHidden": false,
1889
+ "field": "ConvertedContactId",
1890
+ "junctionIdListNames": [],
1891
+ "junctionReferenceTo": [],
1892
+ "relationshipName": null,
1893
+ "restrictedDelete": false
1894
+ },
1895
+ {
1896
+ "cascadeDelete": false,
1897
+ "childSObject": "LeadChangeEvent",
1898
+ "deprecatedAndHidden": false,
1899
+ "field": "ConvertedContactId",
1900
+ "junctionIdListNames": [],
1901
+ "junctionReferenceTo": [],
1902
+ "relationshipName": null,
1903
+ "restrictedDelete": false
1904
+ },
1905
+ {
1906
+ "cascadeDelete": true,
1907
+ "childSObject": "ListEmailIndividualRecipient",
1908
+ "deprecatedAndHidden": false,
1909
+ "field": "RecipientId",
1910
+ "junctionIdListNames": [],
1911
+ "junctionReferenceTo": [],
1912
+ "relationshipName": "ListEmailIndividualRecipients",
1913
+ "restrictedDelete": false
1914
+ },
1915
+ {
1916
+ "cascadeDelete": false,
1917
+ "childSObject": "MaintenancePlan",
1918
+ "deprecatedAndHidden": false,
1919
+ "field": "ContactId",
1920
+ "junctionIdListNames": [],
1921
+ "junctionReferenceTo": [],
1922
+ "relationshipName": "MaintenancePlans",
1923
+ "restrictedDelete": false
1924
+ },
1925
+ {
1926
+ "cascadeDelete": false,
1927
+ "childSObject": "MaintenancePlanChangeEvent",
1928
+ "deprecatedAndHidden": false,
1929
+ "field": "ContactId",
1930
+ "junctionIdListNames": [],
1931
+ "junctionReferenceTo": [],
1932
+ "relationshipName": null,
1933
+ "restrictedDelete": false
1934
+ },
1935
+ {
1936
+ "cascadeDelete": true,
1937
+ "childSObject": "MatchingInformation",
1938
+ "deprecatedAndHidden": false,
1939
+ "field": "SFDCIdId",
1940
+ "junctionIdListNames": [],
1941
+ "junctionReferenceTo": [],
1942
+ "relationshipName": null,
1943
+ "restrictedDelete": false
1944
+ },
1945
+ {
1946
+ "cascadeDelete": false,
1947
+ "childSObject": "MessagingEndUser",
1948
+ "deprecatedAndHidden": false,
1949
+ "field": "ContactId",
1950
+ "junctionIdListNames": [],
1951
+ "junctionReferenceTo": [],
1952
+ "relationshipName": "MessagingEndUsers",
1953
+ "restrictedDelete": false
1954
+ },
1955
+ {
1956
+ "cascadeDelete": false,
1957
+ "childSObject": "MessagingSession",
1958
+ "deprecatedAndHidden": false,
1959
+ "field": "EndUserContactId",
1960
+ "junctionIdListNames": [],
1961
+ "junctionReferenceTo": [],
1962
+ "relationshipName": "MessagingSessions",
1963
+ "restrictedDelete": false
1964
+ },
1965
+ {
1966
+ "cascadeDelete": true,
1967
+ "childSObject": "Note",
1968
+ "deprecatedAndHidden": false,
1969
+ "field": "ParentId",
1970
+ "junctionIdListNames": [],
1971
+ "junctionReferenceTo": [],
1972
+ "relationshipName": "Notes",
1973
+ "restrictedDelete": false
1974
+ },
1975
+ {
1976
+ "cascadeDelete": true,
1977
+ "childSObject": "NoteAndAttachment",
1978
+ "deprecatedAndHidden": false,
1979
+ "field": "ParentId",
1980
+ "junctionIdListNames": [],
1981
+ "junctionReferenceTo": [],
1982
+ "relationshipName": "NotesAndAttachments",
1983
+ "restrictedDelete": false
1984
+ },
1985
+ {
1986
+ "cascadeDelete": true,
1987
+ "childSObject": "OpenActivity",
1988
+ "deprecatedAndHidden": false,
1989
+ "field": "WhoId",
1990
+ "junctionIdListNames": [],
1991
+ "junctionReferenceTo": [],
1992
+ "relationshipName": "OpenActivities",
1993
+ "restrictedDelete": false
1994
+ },
1995
+ {
1996
+ "cascadeDelete": false,
1997
+ "childSObject": "Opportunity",
1998
+ "deprecatedAndHidden": false,
1999
+ "field": "ContactId",
2000
+ "junctionIdListNames": [],
2001
+ "junctionReferenceTo": [],
2002
+ "relationshipName": "Opportunities",
2003
+ "restrictedDelete": false
2004
+ },
2005
+ {
2006
+ "cascadeDelete": false,
2007
+ "childSObject": "OpportunityChangeEvent",
2008
+ "deprecatedAndHidden": false,
2009
+ "field": "ContactId",
2010
+ "junctionIdListNames": [],
2011
+ "junctionReferenceTo": [],
2012
+ "relationshipName": null,
2013
+ "restrictedDelete": false
2014
+ },
2015
+ {
2016
+ "cascadeDelete": true,
2017
+ "childSObject": "OpportunityContactRole",
2018
+ "deprecatedAndHidden": false,
2019
+ "field": "ContactId",
2020
+ "junctionIdListNames": [],
2021
+ "junctionReferenceTo": [],
2022
+ "relationshipName": "OpportunityContactRoles",
2023
+ "restrictedDelete": false
2024
+ },
2025
+ {
2026
+ "cascadeDelete": false,
2027
+ "childSObject": "OpportunityContactRoleChangeEvent",
2028
+ "deprecatedAndHidden": false,
2029
+ "field": "ContactId",
2030
+ "junctionIdListNames": [],
2031
+ "junctionReferenceTo": [],
2032
+ "relationshipName": null,
2033
+ "restrictedDelete": false
2034
+ },
2035
+ {
2036
+ "cascadeDelete": false,
2037
+ "childSObject": "Order",
2038
+ "deprecatedAndHidden": false,
2039
+ "field": "BillToContactId",
2040
+ "junctionIdListNames": [],
2041
+ "junctionReferenceTo": [],
2042
+ "relationshipName": null,
2043
+ "restrictedDelete": true
2044
+ },
2045
+ {
2046
+ "cascadeDelete": false,
2047
+ "childSObject": "Order",
2048
+ "deprecatedAndHidden": false,
2049
+ "field": "CustomerAuthorizedById",
2050
+ "junctionIdListNames": [],
2051
+ "junctionReferenceTo": [],
2052
+ "relationshipName": null,
2053
+ "restrictedDelete": true
2054
+ },
2055
+ {
2056
+ "cascadeDelete": false,
2057
+ "childSObject": "Order",
2058
+ "deprecatedAndHidden": false,
2059
+ "field": "ShipToContactId",
2060
+ "junctionIdListNames": [],
2061
+ "junctionReferenceTo": [],
2062
+ "relationshipName": null,
2063
+ "restrictedDelete": true
2064
+ },
2065
+ {
2066
+ "cascadeDelete": false,
2067
+ "childSObject": "OrderChangeEvent",
2068
+ "deprecatedAndHidden": false,
2069
+ "field": "BillToContactId",
2070
+ "junctionIdListNames": [],
2071
+ "junctionReferenceTo": [],
2072
+ "relationshipName": null,
2073
+ "restrictedDelete": false
2074
+ },
2075
+ {
2076
+ "cascadeDelete": false,
2077
+ "childSObject": "OrderChangeEvent",
2078
+ "deprecatedAndHidden": false,
2079
+ "field": "CustomerAuthorizedById",
2080
+ "junctionIdListNames": [],
2081
+ "junctionReferenceTo": [],
2082
+ "relationshipName": null,
2083
+ "restrictedDelete": false
2084
+ },
2085
+ {
2086
+ "cascadeDelete": false,
2087
+ "childSObject": "OrderChangeEvent",
2088
+ "deprecatedAndHidden": false,
2089
+ "field": "ShipToContactId",
2090
+ "junctionIdListNames": [],
2091
+ "junctionReferenceTo": [],
2092
+ "relationshipName": null,
2093
+ "restrictedDelete": false
2094
+ },
2095
+ {
2096
+ "cascadeDelete": false,
2097
+ "childSObject": "OutgoingEmail",
2098
+ "deprecatedAndHidden": false,
2099
+ "field": "WhoId",
2100
+ "junctionIdListNames": [],
2101
+ "junctionReferenceTo": [],
2102
+ "relationshipName": null,
2103
+ "restrictedDelete": false
2104
+ },
2105
+ {
2106
+ "cascadeDelete": false,
2107
+ "childSObject": "OutgoingEmailRelation",
2108
+ "deprecatedAndHidden": false,
2109
+ "field": "RelationId",
2110
+ "junctionIdListNames": [],
2111
+ "junctionReferenceTo": [],
2112
+ "relationshipName": "OutgoingEmailRelations",
2113
+ "restrictedDelete": false
2114
+ },
2115
+ {
2116
+ "cascadeDelete": true,
2117
+ "childSObject": "ProcessInstance",
2118
+ "deprecatedAndHidden": false,
2119
+ "field": "TargetObjectId",
2120
+ "junctionIdListNames": [],
2121
+ "junctionReferenceTo": [],
2122
+ "relationshipName": "ProcessInstances",
2123
+ "restrictedDelete": false
2124
+ },
2125
+ {
2126
+ "cascadeDelete": false,
2127
+ "childSObject": "ProcessInstanceHistory",
2128
+ "deprecatedAndHidden": false,
2129
+ "field": "TargetObjectId",
2130
+ "junctionIdListNames": [],
2131
+ "junctionReferenceTo": [],
2132
+ "relationshipName": "ProcessSteps",
2133
+ "restrictedDelete": false
2134
+ },
2135
+ {
2136
+ "cascadeDelete": true,
2137
+ "childSObject": "RecordAction",
2138
+ "deprecatedAndHidden": false,
2139
+ "field": "RecordId",
2140
+ "junctionIdListNames": [],
2141
+ "junctionReferenceTo": [],
2142
+ "relationshipName": "RecordActions",
2143
+ "restrictedDelete": false
2144
+ },
2145
+ {
2146
+ "cascadeDelete": false,
2147
+ "childSObject": "RecordActionHistory",
2148
+ "deprecatedAndHidden": false,
2149
+ "field": "ParentRecordId",
2150
+ "junctionIdListNames": [],
2151
+ "junctionReferenceTo": [],
2152
+ "relationshipName": "RecordActionHistories",
2153
+ "restrictedDelete": false
2154
+ },
2155
+ {
2156
+ "cascadeDelete": false,
2157
+ "childSObject": "ReturnOrder",
2158
+ "deprecatedAndHidden": false,
2159
+ "field": "ContactId",
2160
+ "junctionIdListNames": [],
2161
+ "junctionReferenceTo": [],
2162
+ "relationshipName": "ReturnOrders",
2163
+ "restrictedDelete": false
2164
+ },
2165
+ {
2166
+ "cascadeDelete": false,
2167
+ "childSObject": "ReturnOrderChangeEvent",
2168
+ "deprecatedAndHidden": false,
2169
+ "field": "ContactId",
2170
+ "junctionIdListNames": [],
2171
+ "junctionReferenceTo": [],
2172
+ "relationshipName": null,
2173
+ "restrictedDelete": false
2174
+ },
2175
+ {
2176
+ "cascadeDelete": false,
2177
+ "childSObject": "ServiceAppointment",
2178
+ "deprecatedAndHidden": false,
2179
+ "field": "ContactId",
2180
+ "junctionIdListNames": [],
2181
+ "junctionReferenceTo": [],
2182
+ "relationshipName": "ServiceAppointments",
2183
+ "restrictedDelete": false
2184
+ },
2185
+ {
2186
+ "cascadeDelete": false,
2187
+ "childSObject": "ServiceAppointmentChangeEvent",
2188
+ "deprecatedAndHidden": false,
2189
+ "field": "ContactId",
2190
+ "junctionIdListNames": [],
2191
+ "junctionReferenceTo": [],
2192
+ "relationshipName": null,
2193
+ "restrictedDelete": false
2194
+ },
2195
+ {
2196
+ "cascadeDelete": false,
2197
+ "childSObject": "ServiceContract",
2198
+ "deprecatedAndHidden": false,
2199
+ "field": "ContactId",
2200
+ "junctionIdListNames": [],
2201
+ "junctionReferenceTo": [],
2202
+ "relationshipName": "ServiceContracts",
2203
+ "restrictedDelete": true
2204
+ },
2205
+ {
2206
+ "cascadeDelete": false,
2207
+ "childSObject": "ServiceContractChangeEvent",
2208
+ "deprecatedAndHidden": false,
2209
+ "field": "ContactId",
2210
+ "junctionIdListNames": [],
2211
+ "junctionReferenceTo": [],
2212
+ "relationshipName": null,
2213
+ "restrictedDelete": false
2214
+ },
2215
+ {
2216
+ "cascadeDelete": true,
2217
+ "childSObject": "Task",
2218
+ "deprecatedAndHidden": false,
2219
+ "field": "WhoId",
2220
+ "junctionIdListNames": [],
2221
+ "junctionReferenceTo": [],
2222
+ "relationshipName": "Tasks",
2223
+ "restrictedDelete": false
2224
+ },
2225
+ {
2226
+ "cascadeDelete": false,
2227
+ "childSObject": "TaskChangeEvent",
2228
+ "deprecatedAndHidden": false,
2229
+ "field": "WhoId",
2230
+ "junctionIdListNames": [],
2231
+ "junctionReferenceTo": [],
2232
+ "relationshipName": null,
2233
+ "restrictedDelete": false
2234
+ },
2235
+ {
2236
+ "cascadeDelete": true,
2237
+ "childSObject": "TopicAssignment",
2238
+ "deprecatedAndHidden": false,
2239
+ "field": "EntityId",
2240
+ "junctionIdListNames": [],
2241
+ "junctionReferenceTo": [],
2242
+ "relationshipName": "TopicAssignments",
2243
+ "restrictedDelete": false
2244
+ },
2245
+ {
2246
+ "cascadeDelete": false,
2247
+ "childSObject": "UndecidedEventRelation",
2248
+ "deprecatedAndHidden": false,
2249
+ "field": "RelationId",
2250
+ "junctionIdListNames": [],
2251
+ "junctionReferenceTo": [],
2252
+ "relationshipName": "UndecidedEventRelations",
2253
+ "restrictedDelete": false
2254
+ },
2255
+ {
2256
+ "cascadeDelete": false,
2257
+ "childSObject": "User",
2258
+ "deprecatedAndHidden": false,
2259
+ "field": "ContactId",
2260
+ "junctionIdListNames": [],
2261
+ "junctionReferenceTo": [],
2262
+ "relationshipName": "Users",
2263
+ "restrictedDelete": true
2264
+ },
2265
+ {
2266
+ "cascadeDelete": false,
2267
+ "childSObject": "UserChangeEvent",
2268
+ "deprecatedAndHidden": false,
2269
+ "field": "ContactId",
2270
+ "junctionIdListNames": [],
2271
+ "junctionReferenceTo": [],
2272
+ "relationshipName": null,
2273
+ "restrictedDelete": false
2274
+ },
2275
+ {
2276
+ "cascadeDelete": true,
2277
+ "childSObject": "UserEmailPreferredPerson",
2278
+ "deprecatedAndHidden": false,
2279
+ "field": "PersonRecordId",
2280
+ "junctionIdListNames": [],
2281
+ "junctionReferenceTo": [],
2282
+ "relationshipName": "PersonRecord",
2283
+ "restrictedDelete": false
2284
+ },
2285
+ {
2286
+ "cascadeDelete": false,
2287
+ "childSObject": "WorkOrder",
2288
+ "deprecatedAndHidden": false,
2289
+ "field": "ContactId",
2290
+ "junctionIdListNames": [],
2291
+ "junctionReferenceTo": [],
2292
+ "relationshipName": "WorkOrders",
2293
+ "restrictedDelete": false
2294
+ },
2295
+ {
2296
+ "cascadeDelete": false,
2297
+ "childSObject": "WorkOrderChangeEvent",
2298
+ "deprecatedAndHidden": false,
2299
+ "field": "ContactId",
2300
+ "junctionIdListNames": [],
2301
+ "junctionReferenceTo": [],
2302
+ "relationshipName": null,
2303
+ "restrictedDelete": false
2304
+ }
2305
+ ],
2306
+ "custom": false,
2307
+ "name": "Contact",
2308
+ "queryable": true
2309
+ }