@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,1977 @@
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": "Lead 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
+ "Lead"
51
+ ],
52
+ "relationshipName": "MasterRecord",
53
+ "sortable": true,
54
+ "type": "reference"
55
+ },
56
+ {
57
+ "aggregatable": true,
58
+ "custom": false,
59
+ "defaultValue": null,
60
+ "extraTypeInfo": "personname",
61
+ "filterable": true,
62
+ "groupable": true,
63
+ "inlineHelpText": null,
64
+ "label": "Last Name",
65
+ "name": "LastName",
66
+ "nillable": false,
67
+ "picklistValues": [],
68
+ "referenceTo": [],
69
+ "relationshipName": null,
70
+ "sortable": true,
71
+ "type": "string"
72
+ },
73
+ {
74
+ "aggregatable": true,
75
+ "custom": false,
76
+ "defaultValue": null,
77
+ "extraTypeInfo": "personname",
78
+ "filterable": true,
79
+ "groupable": true,
80
+ "inlineHelpText": null,
81
+ "label": "First Name",
82
+ "name": "FirstName",
83
+ "nillable": true,
84
+ "picklistValues": [],
85
+ "referenceTo": [],
86
+ "relationshipName": null,
87
+ "sortable": true,
88
+ "type": "string"
89
+ },
90
+ {
91
+ "aggregatable": true,
92
+ "custom": false,
93
+ "defaultValue": null,
94
+ "extraTypeInfo": "personname",
95
+ "filterable": true,
96
+ "groupable": true,
97
+ "inlineHelpText": null,
98
+ "label": "Salutation",
99
+ "name": "Salutation",
100
+ "nillable": true,
101
+ "picklistValues": [
102
+ {
103
+ "active": true,
104
+ "defaultValue": false,
105
+ "label": "Mr.",
106
+ "validFor": null,
107
+ "value": "Mr."
108
+ },
109
+ {
110
+ "active": true,
111
+ "defaultValue": false,
112
+ "label": "Ms.",
113
+ "validFor": null,
114
+ "value": "Ms."
115
+ },
116
+ {
117
+ "active": true,
118
+ "defaultValue": false,
119
+ "label": "Mrs.",
120
+ "validFor": null,
121
+ "value": "Mrs."
122
+ },
123
+ {
124
+ "active": true,
125
+ "defaultValue": false,
126
+ "label": "Dr.",
127
+ "validFor": null,
128
+ "value": "Dr."
129
+ },
130
+ {
131
+ "active": true,
132
+ "defaultValue": false,
133
+ "label": "Prof.",
134
+ "validFor": null,
135
+ "value": "Prof."
136
+ },
137
+ {
138
+ "active": true,
139
+ "defaultValue": false,
140
+ "label": "Mx.",
141
+ "validFor": null,
142
+ "value": "Mx."
143
+ }
144
+ ],
145
+ "referenceTo": [],
146
+ "relationshipName": null,
147
+ "sortable": true,
148
+ "type": "picklist"
149
+ },
150
+ {
151
+ "aggregatable": true,
152
+ "custom": false,
153
+ "defaultValue": null,
154
+ "extraTypeInfo": "personname",
155
+ "filterable": true,
156
+ "groupable": true,
157
+ "inlineHelpText": null,
158
+ "label": "Full Name",
159
+ "name": "Name",
160
+ "nillable": false,
161
+ "picklistValues": [],
162
+ "referenceTo": [],
163
+ "relationshipName": null,
164
+ "sortable": true,
165
+ "type": "string"
166
+ },
167
+ {
168
+ "aggregatable": true,
169
+ "custom": false,
170
+ "defaultValue": null,
171
+ "extraTypeInfo": null,
172
+ "filterable": true,
173
+ "groupable": true,
174
+ "inlineHelpText": null,
175
+ "label": "Title",
176
+ "name": "Title",
177
+ "nillable": true,
178
+ "picklistValues": [],
179
+ "referenceTo": [],
180
+ "relationshipName": null,
181
+ "sortable": true,
182
+ "type": "string"
183
+ },
184
+ {
185
+ "aggregatable": true,
186
+ "custom": false,
187
+ "defaultValue": null,
188
+ "extraTypeInfo": null,
189
+ "filterable": true,
190
+ "groupable": true,
191
+ "inlineHelpText": null,
192
+ "label": "Company",
193
+ "name": "Company",
194
+ "nillable": false,
195
+ "picklistValues": [],
196
+ "referenceTo": [],
197
+ "relationshipName": null,
198
+ "sortable": true,
199
+ "type": "string"
200
+ },
201
+ {
202
+ "aggregatable": true,
203
+ "custom": false,
204
+ "defaultValue": null,
205
+ "extraTypeInfo": "plaintextarea",
206
+ "filterable": true,
207
+ "groupable": true,
208
+ "inlineHelpText": null,
209
+ "label": "Street",
210
+ "name": "Street",
211
+ "nillable": true,
212
+ "picklistValues": [],
213
+ "referenceTo": [],
214
+ "relationshipName": null,
215
+ "sortable": true,
216
+ "type": "textarea"
217
+ },
218
+ {
219
+ "aggregatable": true,
220
+ "custom": false,
221
+ "defaultValue": null,
222
+ "extraTypeInfo": null,
223
+ "filterable": true,
224
+ "groupable": true,
225
+ "inlineHelpText": null,
226
+ "label": "City",
227
+ "name": "City",
228
+ "nillable": true,
229
+ "picklistValues": [],
230
+ "referenceTo": [],
231
+ "relationshipName": null,
232
+ "sortable": true,
233
+ "type": "string"
234
+ },
235
+ {
236
+ "aggregatable": true,
237
+ "custom": false,
238
+ "defaultValue": null,
239
+ "extraTypeInfo": null,
240
+ "filterable": true,
241
+ "groupable": true,
242
+ "inlineHelpText": null,
243
+ "label": "State/Province",
244
+ "name": "State",
245
+ "nillable": true,
246
+ "picklistValues": [],
247
+ "referenceTo": [],
248
+ "relationshipName": null,
249
+ "sortable": true,
250
+ "type": "string"
251
+ },
252
+ {
253
+ "aggregatable": true,
254
+ "custom": false,
255
+ "defaultValue": null,
256
+ "extraTypeInfo": null,
257
+ "filterable": true,
258
+ "groupable": true,
259
+ "inlineHelpText": null,
260
+ "label": "Zip/Postal Code",
261
+ "name": "PostalCode",
262
+ "nillable": true,
263
+ "picklistValues": [],
264
+ "referenceTo": [],
265
+ "relationshipName": null,
266
+ "sortable": true,
267
+ "type": "string"
268
+ },
269
+ {
270
+ "aggregatable": true,
271
+ "custom": false,
272
+ "defaultValue": null,
273
+ "extraTypeInfo": null,
274
+ "filterable": true,
275
+ "groupable": true,
276
+ "inlineHelpText": null,
277
+ "label": "Country",
278
+ "name": "Country",
279
+ "nillable": true,
280
+ "picklistValues": [],
281
+ "referenceTo": [],
282
+ "relationshipName": null,
283
+ "sortable": true,
284
+ "type": "string"
285
+ },
286
+ {
287
+ "aggregatable": true,
288
+ "custom": false,
289
+ "defaultValue": null,
290
+ "extraTypeInfo": null,
291
+ "filterable": true,
292
+ "groupable": false,
293
+ "inlineHelpText": null,
294
+ "label": "Latitude",
295
+ "name": "Latitude",
296
+ "nillable": true,
297
+ "picklistValues": [],
298
+ "referenceTo": [],
299
+ "relationshipName": null,
300
+ "sortable": true,
301
+ "type": "double"
302
+ },
303
+ {
304
+ "aggregatable": true,
305
+ "custom": false,
306
+ "defaultValue": null,
307
+ "extraTypeInfo": null,
308
+ "filterable": true,
309
+ "groupable": false,
310
+ "inlineHelpText": null,
311
+ "label": "Longitude",
312
+ "name": "Longitude",
313
+ "nillable": true,
314
+ "picklistValues": [],
315
+ "referenceTo": [],
316
+ "relationshipName": null,
317
+ "sortable": true,
318
+ "type": "double"
319
+ },
320
+ {
321
+ "aggregatable": true,
322
+ "custom": false,
323
+ "defaultValue": null,
324
+ "extraTypeInfo": null,
325
+ "filterable": true,
326
+ "groupable": true,
327
+ "inlineHelpText": null,
328
+ "label": "Geocode Accuracy",
329
+ "name": "GeocodeAccuracy",
330
+ "nillable": true,
331
+ "picklistValues": [
332
+ {
333
+ "active": true,
334
+ "defaultValue": false,
335
+ "label": "Address",
336
+ "validFor": null,
337
+ "value": "Address"
338
+ },
339
+ {
340
+ "active": true,
341
+ "defaultValue": false,
342
+ "label": "NearAddress",
343
+ "validFor": null,
344
+ "value": "NearAddress"
345
+ },
346
+ {
347
+ "active": true,
348
+ "defaultValue": false,
349
+ "label": "Block",
350
+ "validFor": null,
351
+ "value": "Block"
352
+ },
353
+ {
354
+ "active": true,
355
+ "defaultValue": false,
356
+ "label": "Street",
357
+ "validFor": null,
358
+ "value": "Street"
359
+ },
360
+ {
361
+ "active": true,
362
+ "defaultValue": false,
363
+ "label": "ExtendedZip",
364
+ "validFor": null,
365
+ "value": "ExtendedZip"
366
+ },
367
+ {
368
+ "active": true,
369
+ "defaultValue": false,
370
+ "label": "Zip",
371
+ "validFor": null,
372
+ "value": "Zip"
373
+ },
374
+ {
375
+ "active": true,
376
+ "defaultValue": false,
377
+ "label": "Neighborhood",
378
+ "validFor": null,
379
+ "value": "Neighborhood"
380
+ },
381
+ {
382
+ "active": true,
383
+ "defaultValue": false,
384
+ "label": "City",
385
+ "validFor": null,
386
+ "value": "City"
387
+ },
388
+ {
389
+ "active": true,
390
+ "defaultValue": false,
391
+ "label": "County",
392
+ "validFor": null,
393
+ "value": "County"
394
+ },
395
+ {
396
+ "active": true,
397
+ "defaultValue": false,
398
+ "label": "State",
399
+ "validFor": null,
400
+ "value": "State"
401
+ },
402
+ {
403
+ "active": true,
404
+ "defaultValue": false,
405
+ "label": "Unknown",
406
+ "validFor": null,
407
+ "value": "Unknown"
408
+ }
409
+ ],
410
+ "referenceTo": [],
411
+ "relationshipName": null,
412
+ "sortable": true,
413
+ "type": "picklist"
414
+ },
415
+ {
416
+ "aggregatable": false,
417
+ "custom": false,
418
+ "defaultValue": null,
419
+ "extraTypeInfo": null,
420
+ "filterable": true,
421
+ "groupable": false,
422
+ "inlineHelpText": null,
423
+ "label": "Address",
424
+ "name": "Address",
425
+ "nillable": true,
426
+ "picklistValues": [],
427
+ "referenceTo": [],
428
+ "relationshipName": null,
429
+ "sortable": false,
430
+ "type": "address"
431
+ },
432
+ {
433
+ "aggregatable": true,
434
+ "custom": false,
435
+ "defaultValue": null,
436
+ "extraTypeInfo": null,
437
+ "filterable": true,
438
+ "groupable": true,
439
+ "inlineHelpText": null,
440
+ "label": "Phone",
441
+ "name": "Phone",
442
+ "nillable": true,
443
+ "picklistValues": [],
444
+ "referenceTo": [],
445
+ "relationshipName": null,
446
+ "sortable": true,
447
+ "type": "phone"
448
+ },
449
+ {
450
+ "aggregatable": true,
451
+ "custom": false,
452
+ "defaultValue": null,
453
+ "extraTypeInfo": null,
454
+ "filterable": true,
455
+ "groupable": true,
456
+ "inlineHelpText": null,
457
+ "label": "Mobile Phone",
458
+ "name": "MobilePhone",
459
+ "nillable": true,
460
+ "picklistValues": [],
461
+ "referenceTo": [],
462
+ "relationshipName": null,
463
+ "sortable": true,
464
+ "type": "phone"
465
+ },
466
+ {
467
+ "aggregatable": true,
468
+ "custom": false,
469
+ "defaultValue": null,
470
+ "extraTypeInfo": null,
471
+ "filterable": true,
472
+ "groupable": true,
473
+ "inlineHelpText": null,
474
+ "label": "Fax",
475
+ "name": "Fax",
476
+ "nillable": true,
477
+ "picklistValues": [],
478
+ "referenceTo": [],
479
+ "relationshipName": null,
480
+ "sortable": true,
481
+ "type": "phone"
482
+ },
483
+ {
484
+ "aggregatable": true,
485
+ "custom": false,
486
+ "defaultValue": null,
487
+ "extraTypeInfo": null,
488
+ "filterable": true,
489
+ "groupable": true,
490
+ "inlineHelpText": null,
491
+ "label": "Email",
492
+ "name": "Email",
493
+ "nillable": true,
494
+ "picklistValues": [],
495
+ "referenceTo": [],
496
+ "relationshipName": null,
497
+ "sortable": true,
498
+ "type": "email"
499
+ },
500
+ {
501
+ "aggregatable": true,
502
+ "custom": false,
503
+ "defaultValue": null,
504
+ "extraTypeInfo": null,
505
+ "filterable": true,
506
+ "groupable": true,
507
+ "inlineHelpText": null,
508
+ "label": "Website",
509
+ "name": "Website",
510
+ "nillable": true,
511
+ "picklistValues": [],
512
+ "referenceTo": [],
513
+ "relationshipName": null,
514
+ "sortable": true,
515
+ "type": "url"
516
+ },
517
+ {
518
+ "aggregatable": true,
519
+ "custom": false,
520
+ "defaultValue": null,
521
+ "extraTypeInfo": "imageurl",
522
+ "filterable": true,
523
+ "groupable": true,
524
+ "inlineHelpText": null,
525
+ "label": "Photo URL",
526
+ "name": "PhotoUrl",
527
+ "nillable": true,
528
+ "picklistValues": [],
529
+ "referenceTo": [],
530
+ "relationshipName": null,
531
+ "sortable": true,
532
+ "type": "url"
533
+ },
534
+ {
535
+ "aggregatable": false,
536
+ "custom": false,
537
+ "defaultValue": null,
538
+ "extraTypeInfo": "plaintextarea",
539
+ "filterable": false,
540
+ "groupable": false,
541
+ "inlineHelpText": null,
542
+ "label": "Description",
543
+ "name": "Description",
544
+ "nillable": true,
545
+ "picklistValues": [],
546
+ "referenceTo": [],
547
+ "relationshipName": null,
548
+ "sortable": false,
549
+ "type": "textarea"
550
+ },
551
+ {
552
+ "aggregatable": true,
553
+ "custom": false,
554
+ "defaultValue": null,
555
+ "extraTypeInfo": null,
556
+ "filterable": true,
557
+ "groupable": true,
558
+ "inlineHelpText": null,
559
+ "label": "Lead Source",
560
+ "name": "LeadSource",
561
+ "nillable": true,
562
+ "picklistValues": [
563
+ {
564
+ "active": true,
565
+ "defaultValue": false,
566
+ "label": "Web",
567
+ "validFor": null,
568
+ "value": "Web"
569
+ },
570
+ {
571
+ "active": true,
572
+ "defaultValue": false,
573
+ "label": "Phone Inquiry",
574
+ "validFor": null,
575
+ "value": "Phone Inquiry"
576
+ },
577
+ {
578
+ "active": true,
579
+ "defaultValue": false,
580
+ "label": "Partner Referral",
581
+ "validFor": null,
582
+ "value": "Partner Referral"
583
+ },
584
+ {
585
+ "active": true,
586
+ "defaultValue": false,
587
+ "label": "Purchased List",
588
+ "validFor": null,
589
+ "value": "Purchased List"
590
+ },
591
+ {
592
+ "active": true,
593
+ "defaultValue": false,
594
+ "label": "Other",
595
+ "validFor": null,
596
+ "value": "Other"
597
+ }
598
+ ],
599
+ "referenceTo": [],
600
+ "relationshipName": null,
601
+ "sortable": true,
602
+ "type": "picklist"
603
+ },
604
+ {
605
+ "aggregatable": true,
606
+ "custom": false,
607
+ "defaultValue": "Open - Not Contacted",
608
+ "extraTypeInfo": null,
609
+ "filterable": true,
610
+ "groupable": true,
611
+ "inlineHelpText": null,
612
+ "label": "Status",
613
+ "name": "Status",
614
+ "nillable": false,
615
+ "picklistValues": [
616
+ {
617
+ "active": true,
618
+ "defaultValue": true,
619
+ "label": "Open - Not Contacted",
620
+ "validFor": null,
621
+ "value": "Open - Not Contacted"
622
+ },
623
+ {
624
+ "active": true,
625
+ "defaultValue": false,
626
+ "label": "Working - Contacted",
627
+ "validFor": null,
628
+ "value": "Working - Contacted"
629
+ },
630
+ {
631
+ "active": true,
632
+ "defaultValue": false,
633
+ "label": "Closed - Converted",
634
+ "validFor": null,
635
+ "value": "Closed - Converted"
636
+ },
637
+ {
638
+ "active": true,
639
+ "defaultValue": false,
640
+ "label": "Closed - Not Converted",
641
+ "validFor": null,
642
+ "value": "Closed - Not Converted"
643
+ }
644
+ ],
645
+ "referenceTo": [],
646
+ "relationshipName": null,
647
+ "sortable": true,
648
+ "type": "picklist"
649
+ },
650
+ {
651
+ "aggregatable": true,
652
+ "custom": false,
653
+ "defaultValue": null,
654
+ "extraTypeInfo": null,
655
+ "filterable": true,
656
+ "groupable": true,
657
+ "inlineHelpText": null,
658
+ "label": "Industry",
659
+ "name": "Industry",
660
+ "nillable": true,
661
+ "picklistValues": [
662
+ {
663
+ "active": true,
664
+ "defaultValue": false,
665
+ "label": "Agriculture",
666
+ "validFor": null,
667
+ "value": "Agriculture"
668
+ },
669
+ {
670
+ "active": true,
671
+ "defaultValue": false,
672
+ "label": "Apparel",
673
+ "validFor": null,
674
+ "value": "Apparel"
675
+ },
676
+ {
677
+ "active": true,
678
+ "defaultValue": false,
679
+ "label": "Banking",
680
+ "validFor": null,
681
+ "value": "Banking"
682
+ },
683
+ {
684
+ "active": true,
685
+ "defaultValue": false,
686
+ "label": "Biotechnology",
687
+ "validFor": null,
688
+ "value": "Biotechnology"
689
+ },
690
+ {
691
+ "active": true,
692
+ "defaultValue": false,
693
+ "label": "Chemicals",
694
+ "validFor": null,
695
+ "value": "Chemicals"
696
+ },
697
+ {
698
+ "active": true,
699
+ "defaultValue": false,
700
+ "label": "Communications",
701
+ "validFor": null,
702
+ "value": "Communications"
703
+ },
704
+ {
705
+ "active": true,
706
+ "defaultValue": false,
707
+ "label": "Construction",
708
+ "validFor": null,
709
+ "value": "Construction"
710
+ },
711
+ {
712
+ "active": true,
713
+ "defaultValue": false,
714
+ "label": "Consulting",
715
+ "validFor": null,
716
+ "value": "Consulting"
717
+ },
718
+ {
719
+ "active": true,
720
+ "defaultValue": false,
721
+ "label": "Education",
722
+ "validFor": null,
723
+ "value": "Education"
724
+ },
725
+ {
726
+ "active": true,
727
+ "defaultValue": false,
728
+ "label": "Electronics",
729
+ "validFor": null,
730
+ "value": "Electronics"
731
+ },
732
+ {
733
+ "active": true,
734
+ "defaultValue": false,
735
+ "label": "Energy",
736
+ "validFor": null,
737
+ "value": "Energy"
738
+ },
739
+ {
740
+ "active": true,
741
+ "defaultValue": false,
742
+ "label": "Engineering",
743
+ "validFor": null,
744
+ "value": "Engineering"
745
+ },
746
+ {
747
+ "active": true,
748
+ "defaultValue": false,
749
+ "label": "Entertainment",
750
+ "validFor": null,
751
+ "value": "Entertainment"
752
+ },
753
+ {
754
+ "active": true,
755
+ "defaultValue": false,
756
+ "label": "Environmental",
757
+ "validFor": null,
758
+ "value": "Environmental"
759
+ },
760
+ {
761
+ "active": true,
762
+ "defaultValue": false,
763
+ "label": "Finance",
764
+ "validFor": null,
765
+ "value": "Finance"
766
+ },
767
+ {
768
+ "active": true,
769
+ "defaultValue": false,
770
+ "label": "Food & Beverage",
771
+ "validFor": null,
772
+ "value": "Food & Beverage"
773
+ },
774
+ {
775
+ "active": true,
776
+ "defaultValue": false,
777
+ "label": "Government",
778
+ "validFor": null,
779
+ "value": "Government"
780
+ },
781
+ {
782
+ "active": true,
783
+ "defaultValue": false,
784
+ "label": "Healthcare",
785
+ "validFor": null,
786
+ "value": "Healthcare"
787
+ },
788
+ {
789
+ "active": true,
790
+ "defaultValue": false,
791
+ "label": "Hospitality",
792
+ "validFor": null,
793
+ "value": "Hospitality"
794
+ },
795
+ {
796
+ "active": true,
797
+ "defaultValue": false,
798
+ "label": "Insurance",
799
+ "validFor": null,
800
+ "value": "Insurance"
801
+ },
802
+ {
803
+ "active": true,
804
+ "defaultValue": false,
805
+ "label": "Machinery",
806
+ "validFor": null,
807
+ "value": "Machinery"
808
+ },
809
+ {
810
+ "active": true,
811
+ "defaultValue": false,
812
+ "label": "Manufacturing",
813
+ "validFor": null,
814
+ "value": "Manufacturing"
815
+ },
816
+ {
817
+ "active": true,
818
+ "defaultValue": false,
819
+ "label": "Media",
820
+ "validFor": null,
821
+ "value": "Media"
822
+ },
823
+ {
824
+ "active": true,
825
+ "defaultValue": false,
826
+ "label": "Not For Profit",
827
+ "validFor": null,
828
+ "value": "Not For Profit"
829
+ },
830
+ {
831
+ "active": true,
832
+ "defaultValue": false,
833
+ "label": "Recreation",
834
+ "validFor": null,
835
+ "value": "Recreation"
836
+ },
837
+ {
838
+ "active": true,
839
+ "defaultValue": false,
840
+ "label": "Retail",
841
+ "validFor": null,
842
+ "value": "Retail"
843
+ },
844
+ {
845
+ "active": true,
846
+ "defaultValue": false,
847
+ "label": "Shipping",
848
+ "validFor": null,
849
+ "value": "Shipping"
850
+ },
851
+ {
852
+ "active": true,
853
+ "defaultValue": false,
854
+ "label": "Technology",
855
+ "validFor": null,
856
+ "value": "Technology"
857
+ },
858
+ {
859
+ "active": true,
860
+ "defaultValue": false,
861
+ "label": "Telecommunications",
862
+ "validFor": null,
863
+ "value": "Telecommunications"
864
+ },
865
+ {
866
+ "active": true,
867
+ "defaultValue": false,
868
+ "label": "Transportation",
869
+ "validFor": null,
870
+ "value": "Transportation"
871
+ },
872
+ {
873
+ "active": true,
874
+ "defaultValue": false,
875
+ "label": "Utilities",
876
+ "validFor": null,
877
+ "value": "Utilities"
878
+ },
879
+ {
880
+ "active": true,
881
+ "defaultValue": false,
882
+ "label": "Other",
883
+ "validFor": null,
884
+ "value": "Other"
885
+ }
886
+ ],
887
+ "referenceTo": [],
888
+ "relationshipName": null,
889
+ "sortable": true,
890
+ "type": "picklist"
891
+ },
892
+ {
893
+ "aggregatable": true,
894
+ "custom": false,
895
+ "defaultValue": null,
896
+ "extraTypeInfo": null,
897
+ "filterable": true,
898
+ "groupable": true,
899
+ "inlineHelpText": null,
900
+ "label": "Rating",
901
+ "name": "Rating",
902
+ "nillable": true,
903
+ "picklistValues": [
904
+ {
905
+ "active": true,
906
+ "defaultValue": false,
907
+ "label": "Hot",
908
+ "validFor": null,
909
+ "value": "Hot"
910
+ },
911
+ {
912
+ "active": true,
913
+ "defaultValue": false,
914
+ "label": "Warm",
915
+ "validFor": null,
916
+ "value": "Warm"
917
+ },
918
+ {
919
+ "active": true,
920
+ "defaultValue": false,
921
+ "label": "Cold",
922
+ "validFor": null,
923
+ "value": "Cold"
924
+ }
925
+ ],
926
+ "referenceTo": [],
927
+ "relationshipName": null,
928
+ "sortable": true,
929
+ "type": "picklist"
930
+ },
931
+ {
932
+ "aggregatable": true,
933
+ "custom": false,
934
+ "defaultValue": null,
935
+ "extraTypeInfo": null,
936
+ "filterable": true,
937
+ "groupable": false,
938
+ "inlineHelpText": null,
939
+ "label": "Annual Revenue",
940
+ "name": "AnnualRevenue",
941
+ "nillable": true,
942
+ "picklistValues": [],
943
+ "referenceTo": [],
944
+ "relationshipName": null,
945
+ "sortable": true,
946
+ "type": "currency"
947
+ },
948
+ {
949
+ "aggregatable": true,
950
+ "custom": false,
951
+ "defaultValue": null,
952
+ "extraTypeInfo": null,
953
+ "filterable": true,
954
+ "groupable": true,
955
+ "inlineHelpText": null,
956
+ "label": "Employees",
957
+ "name": "NumberOfEmployees",
958
+ "nillable": true,
959
+ "picklistValues": [],
960
+ "referenceTo": [],
961
+ "relationshipName": null,
962
+ "sortable": true,
963
+ "type": "int"
964
+ },
965
+ {
966
+ "aggregatable": true,
967
+ "custom": false,
968
+ "defaultValue": null,
969
+ "extraTypeInfo": null,
970
+ "filterable": true,
971
+ "groupable": true,
972
+ "inlineHelpText": null,
973
+ "label": "Owner ID",
974
+ "name": "OwnerId",
975
+ "nillable": false,
976
+ "picklistValues": [],
977
+ "referenceTo": [
978
+ "Group",
979
+ "User"
980
+ ],
981
+ "relationshipName": "Owner",
982
+ "sortable": true,
983
+ "type": "reference"
984
+ },
985
+ {
986
+ "aggregatable": false,
987
+ "custom": false,
988
+ "defaultValue": null,
989
+ "extraTypeInfo": null,
990
+ "filterable": true,
991
+ "groupable": true,
992
+ "inlineHelpText": null,
993
+ "label": "Converted",
994
+ "name": "IsConverted",
995
+ "nillable": false,
996
+ "picklistValues": [],
997
+ "referenceTo": [],
998
+ "relationshipName": null,
999
+ "sortable": true,
1000
+ "type": "boolean"
1001
+ },
1002
+ {
1003
+ "aggregatable": true,
1004
+ "custom": false,
1005
+ "defaultValue": null,
1006
+ "extraTypeInfo": null,
1007
+ "filterable": true,
1008
+ "groupable": true,
1009
+ "inlineHelpText": null,
1010
+ "label": "Converted Date",
1011
+ "name": "ConvertedDate",
1012
+ "nillable": true,
1013
+ "picklistValues": [],
1014
+ "referenceTo": [],
1015
+ "relationshipName": null,
1016
+ "sortable": true,
1017
+ "type": "date"
1018
+ },
1019
+ {
1020
+ "aggregatable": true,
1021
+ "custom": false,
1022
+ "defaultValue": null,
1023
+ "extraTypeInfo": null,
1024
+ "filterable": true,
1025
+ "groupable": true,
1026
+ "inlineHelpText": null,
1027
+ "label": "Converted Account ID",
1028
+ "name": "ConvertedAccountId",
1029
+ "nillable": true,
1030
+ "picklistValues": [],
1031
+ "referenceTo": [
1032
+ "Account"
1033
+ ],
1034
+ "relationshipName": "ConvertedAccount",
1035
+ "sortable": true,
1036
+ "type": "reference"
1037
+ },
1038
+ {
1039
+ "aggregatable": true,
1040
+ "custom": false,
1041
+ "defaultValue": null,
1042
+ "extraTypeInfo": null,
1043
+ "filterable": true,
1044
+ "groupable": true,
1045
+ "inlineHelpText": null,
1046
+ "label": "Converted Contact ID",
1047
+ "name": "ConvertedContactId",
1048
+ "nillable": true,
1049
+ "picklistValues": [],
1050
+ "referenceTo": [
1051
+ "Contact"
1052
+ ],
1053
+ "relationshipName": "ConvertedContact",
1054
+ "sortable": true,
1055
+ "type": "reference"
1056
+ },
1057
+ {
1058
+ "aggregatable": true,
1059
+ "custom": false,
1060
+ "defaultValue": null,
1061
+ "extraTypeInfo": null,
1062
+ "filterable": true,
1063
+ "groupable": true,
1064
+ "inlineHelpText": null,
1065
+ "label": "Converted Opportunity ID",
1066
+ "name": "ConvertedOpportunityId",
1067
+ "nillable": true,
1068
+ "picklistValues": [],
1069
+ "referenceTo": [
1070
+ "Opportunity"
1071
+ ],
1072
+ "relationshipName": "ConvertedOpportunity",
1073
+ "sortable": true,
1074
+ "type": "reference"
1075
+ },
1076
+ {
1077
+ "aggregatable": false,
1078
+ "custom": false,
1079
+ "defaultValue": null,
1080
+ "extraTypeInfo": null,
1081
+ "filterable": true,
1082
+ "groupable": true,
1083
+ "inlineHelpText": null,
1084
+ "label": "Unread By Owner",
1085
+ "name": "IsUnreadByOwner",
1086
+ "nillable": false,
1087
+ "picklistValues": [],
1088
+ "referenceTo": [],
1089
+ "relationshipName": null,
1090
+ "sortable": true,
1091
+ "type": "boolean"
1092
+ },
1093
+ {
1094
+ "aggregatable": true,
1095
+ "custom": false,
1096
+ "defaultValue": null,
1097
+ "extraTypeInfo": null,
1098
+ "filterable": true,
1099
+ "groupable": false,
1100
+ "inlineHelpText": null,
1101
+ "label": "Created Date",
1102
+ "name": "CreatedDate",
1103
+ "nillable": false,
1104
+ "picklistValues": [],
1105
+ "referenceTo": [],
1106
+ "relationshipName": null,
1107
+ "sortable": true,
1108
+ "type": "datetime"
1109
+ },
1110
+ {
1111
+ "aggregatable": true,
1112
+ "custom": false,
1113
+ "defaultValue": null,
1114
+ "extraTypeInfo": null,
1115
+ "filterable": true,
1116
+ "groupable": true,
1117
+ "inlineHelpText": null,
1118
+ "label": "Created By ID",
1119
+ "name": "CreatedById",
1120
+ "nillable": false,
1121
+ "picklistValues": [],
1122
+ "referenceTo": [
1123
+ "User"
1124
+ ],
1125
+ "relationshipName": "CreatedBy",
1126
+ "sortable": true,
1127
+ "type": "reference"
1128
+ },
1129
+ {
1130
+ "aggregatable": true,
1131
+ "custom": false,
1132
+ "defaultValue": null,
1133
+ "extraTypeInfo": null,
1134
+ "filterable": true,
1135
+ "groupable": false,
1136
+ "inlineHelpText": null,
1137
+ "label": "Last Modified Date",
1138
+ "name": "LastModifiedDate",
1139
+ "nillable": false,
1140
+ "picklistValues": [],
1141
+ "referenceTo": [],
1142
+ "relationshipName": null,
1143
+ "sortable": true,
1144
+ "type": "datetime"
1145
+ },
1146
+ {
1147
+ "aggregatable": true,
1148
+ "custom": false,
1149
+ "defaultValue": null,
1150
+ "extraTypeInfo": null,
1151
+ "filterable": true,
1152
+ "groupable": true,
1153
+ "inlineHelpText": null,
1154
+ "label": "Last Modified By ID",
1155
+ "name": "LastModifiedById",
1156
+ "nillable": false,
1157
+ "picklistValues": [],
1158
+ "referenceTo": [
1159
+ "User"
1160
+ ],
1161
+ "relationshipName": "LastModifiedBy",
1162
+ "sortable": true,
1163
+ "type": "reference"
1164
+ },
1165
+ {
1166
+ "aggregatable": true,
1167
+ "custom": false,
1168
+ "defaultValue": null,
1169
+ "extraTypeInfo": null,
1170
+ "filterable": true,
1171
+ "groupable": false,
1172
+ "inlineHelpText": null,
1173
+ "label": "System Modstamp",
1174
+ "name": "SystemModstamp",
1175
+ "nillable": false,
1176
+ "picklistValues": [],
1177
+ "referenceTo": [],
1178
+ "relationshipName": null,
1179
+ "sortable": true,
1180
+ "type": "datetime"
1181
+ },
1182
+ {
1183
+ "aggregatable": true,
1184
+ "custom": false,
1185
+ "defaultValue": null,
1186
+ "extraTypeInfo": null,
1187
+ "filterable": true,
1188
+ "groupable": true,
1189
+ "inlineHelpText": null,
1190
+ "label": "Last Activity",
1191
+ "name": "LastActivityDate",
1192
+ "nillable": true,
1193
+ "picklistValues": [],
1194
+ "referenceTo": [],
1195
+ "relationshipName": null,
1196
+ "sortable": true,
1197
+ "type": "date"
1198
+ },
1199
+ {
1200
+ "aggregatable": true,
1201
+ "custom": false,
1202
+ "defaultValue": null,
1203
+ "extraTypeInfo": null,
1204
+ "filterable": true,
1205
+ "groupable": false,
1206
+ "inlineHelpText": null,
1207
+ "label": "Last Viewed Date",
1208
+ "name": "LastViewedDate",
1209
+ "nillable": true,
1210
+ "picklistValues": [],
1211
+ "referenceTo": [],
1212
+ "relationshipName": null,
1213
+ "sortable": true,
1214
+ "type": "datetime"
1215
+ },
1216
+ {
1217
+ "aggregatable": true,
1218
+ "custom": false,
1219
+ "defaultValue": null,
1220
+ "extraTypeInfo": null,
1221
+ "filterable": true,
1222
+ "groupable": false,
1223
+ "inlineHelpText": null,
1224
+ "label": "Last Referenced Date",
1225
+ "name": "LastReferencedDate",
1226
+ "nillable": true,
1227
+ "picklistValues": [],
1228
+ "referenceTo": [],
1229
+ "relationshipName": null,
1230
+ "sortable": true,
1231
+ "type": "datetime"
1232
+ },
1233
+ {
1234
+ "aggregatable": true,
1235
+ "custom": false,
1236
+ "defaultValue": null,
1237
+ "extraTypeInfo": null,
1238
+ "filterable": true,
1239
+ "groupable": true,
1240
+ "inlineHelpText": null,
1241
+ "label": "Data.com Key",
1242
+ "name": "Jigsaw",
1243
+ "nillable": true,
1244
+ "picklistValues": [],
1245
+ "referenceTo": [],
1246
+ "relationshipName": null,
1247
+ "sortable": true,
1248
+ "type": "string"
1249
+ },
1250
+ {
1251
+ "aggregatable": true,
1252
+ "custom": false,
1253
+ "defaultValue": null,
1254
+ "extraTypeInfo": null,
1255
+ "filterable": true,
1256
+ "groupable": true,
1257
+ "inlineHelpText": null,
1258
+ "label": "Jigsaw Contact ID",
1259
+ "name": "JigsawContactId",
1260
+ "nillable": true,
1261
+ "picklistValues": [],
1262
+ "referenceTo": [],
1263
+ "relationshipName": "JigsawContact",
1264
+ "sortable": true,
1265
+ "type": "string"
1266
+ },
1267
+ {
1268
+ "aggregatable": true,
1269
+ "custom": false,
1270
+ "defaultValue": null,
1271
+ "extraTypeInfo": null,
1272
+ "filterable": true,
1273
+ "groupable": true,
1274
+ "inlineHelpText": null,
1275
+ "label": "Clean Status",
1276
+ "name": "CleanStatus",
1277
+ "nillable": true,
1278
+ "picklistValues": [
1279
+ {
1280
+ "active": true,
1281
+ "defaultValue": false,
1282
+ "label": "In Sync",
1283
+ "validFor": null,
1284
+ "value": "Matched"
1285
+ },
1286
+ {
1287
+ "active": true,
1288
+ "defaultValue": false,
1289
+ "label": "Different",
1290
+ "validFor": null,
1291
+ "value": "Different"
1292
+ },
1293
+ {
1294
+ "active": true,
1295
+ "defaultValue": false,
1296
+ "label": "Reviewed",
1297
+ "validFor": null,
1298
+ "value": "Acknowledged"
1299
+ },
1300
+ {
1301
+ "active": true,
1302
+ "defaultValue": false,
1303
+ "label": "Not Found",
1304
+ "validFor": null,
1305
+ "value": "NotFound"
1306
+ },
1307
+ {
1308
+ "active": true,
1309
+ "defaultValue": false,
1310
+ "label": "Inactive",
1311
+ "validFor": null,
1312
+ "value": "Inactive"
1313
+ },
1314
+ {
1315
+ "active": true,
1316
+ "defaultValue": false,
1317
+ "label": "Not Compared",
1318
+ "validFor": null,
1319
+ "value": "Pending"
1320
+ },
1321
+ {
1322
+ "active": true,
1323
+ "defaultValue": false,
1324
+ "label": "Select Match",
1325
+ "validFor": null,
1326
+ "value": "SelectMatch"
1327
+ },
1328
+ {
1329
+ "active": true,
1330
+ "defaultValue": false,
1331
+ "label": "Skipped",
1332
+ "validFor": null,
1333
+ "value": "Skipped"
1334
+ }
1335
+ ],
1336
+ "referenceTo": [],
1337
+ "relationshipName": null,
1338
+ "sortable": true,
1339
+ "type": "picklist"
1340
+ },
1341
+ {
1342
+ "aggregatable": true,
1343
+ "custom": false,
1344
+ "defaultValue": null,
1345
+ "extraTypeInfo": null,
1346
+ "filterable": true,
1347
+ "groupable": true,
1348
+ "inlineHelpText": null,
1349
+ "label": "Company D-U-N-S Number",
1350
+ "name": "CompanyDunsNumber",
1351
+ "nillable": true,
1352
+ "picklistValues": [],
1353
+ "referenceTo": [],
1354
+ "relationshipName": null,
1355
+ "sortable": true,
1356
+ "type": "string"
1357
+ },
1358
+ {
1359
+ "aggregatable": true,
1360
+ "custom": false,
1361
+ "defaultValue": null,
1362
+ "extraTypeInfo": null,
1363
+ "filterable": true,
1364
+ "groupable": true,
1365
+ "inlineHelpText": null,
1366
+ "label": "D&B Company ID",
1367
+ "name": "DandbCompanyId",
1368
+ "nillable": true,
1369
+ "picklistValues": [],
1370
+ "referenceTo": [
1371
+ "DandBCompany"
1372
+ ],
1373
+ "relationshipName": "DandbCompany",
1374
+ "sortable": true,
1375
+ "type": "reference"
1376
+ },
1377
+ {
1378
+ "aggregatable": true,
1379
+ "custom": false,
1380
+ "defaultValue": null,
1381
+ "extraTypeInfo": null,
1382
+ "filterable": true,
1383
+ "groupable": true,
1384
+ "inlineHelpText": null,
1385
+ "label": "Email Bounced Reason",
1386
+ "name": "EmailBouncedReason",
1387
+ "nillable": true,
1388
+ "picklistValues": [],
1389
+ "referenceTo": [],
1390
+ "relationshipName": null,
1391
+ "sortable": true,
1392
+ "type": "string"
1393
+ },
1394
+ {
1395
+ "aggregatable": true,
1396
+ "custom": false,
1397
+ "defaultValue": null,
1398
+ "extraTypeInfo": null,
1399
+ "filterable": true,
1400
+ "groupable": false,
1401
+ "inlineHelpText": null,
1402
+ "label": "Email Bounced Date",
1403
+ "name": "EmailBouncedDate",
1404
+ "nillable": true,
1405
+ "picklistValues": [],
1406
+ "referenceTo": [],
1407
+ "relationshipName": null,
1408
+ "sortable": true,
1409
+ "type": "datetime"
1410
+ },
1411
+ {
1412
+ "aggregatable": true,
1413
+ "custom": false,
1414
+ "defaultValue": null,
1415
+ "extraTypeInfo": null,
1416
+ "filterable": true,
1417
+ "groupable": true,
1418
+ "inlineHelpText": null,
1419
+ "label": "Individual ID",
1420
+ "name": "IndividualId",
1421
+ "nillable": true,
1422
+ "picklistValues": [],
1423
+ "referenceTo": [
1424
+ "Individual"
1425
+ ],
1426
+ "relationshipName": "Individual",
1427
+ "sortable": true,
1428
+ "type": "reference"
1429
+ }
1430
+ ],
1431
+ "label": "Lead",
1432
+ "childRelationships": [
1433
+ {
1434
+ "cascadeDelete": true,
1435
+ "childSObject": "AIInsightValue",
1436
+ "deprecatedAndHidden": false,
1437
+ "field": "SobjectLookupValueId",
1438
+ "junctionIdListNames": [],
1439
+ "junctionReferenceTo": [],
1440
+ "relationshipName": null,
1441
+ "restrictedDelete": false
1442
+ },
1443
+ {
1444
+ "cascadeDelete": true,
1445
+ "childSObject": "AIRecordInsight",
1446
+ "deprecatedAndHidden": false,
1447
+ "field": "TargetId",
1448
+ "junctionIdListNames": [],
1449
+ "junctionReferenceTo": [],
1450
+ "relationshipName": null,
1451
+ "restrictedDelete": false
1452
+ },
1453
+ {
1454
+ "cascadeDelete": false,
1455
+ "childSObject": "AcceptedEventRelation",
1456
+ "deprecatedAndHidden": false,
1457
+ "field": "RelationId",
1458
+ "junctionIdListNames": [],
1459
+ "junctionReferenceTo": [],
1460
+ "relationshipName": "AcceptedEventRelations",
1461
+ "restrictedDelete": false
1462
+ },
1463
+ {
1464
+ "cascadeDelete": true,
1465
+ "childSObject": "ActivityHistory",
1466
+ "deprecatedAndHidden": false,
1467
+ "field": "WhoId",
1468
+ "junctionIdListNames": [],
1469
+ "junctionReferenceTo": [],
1470
+ "relationshipName": "ActivityHistories",
1471
+ "restrictedDelete": false
1472
+ },
1473
+ {
1474
+ "cascadeDelete": true,
1475
+ "childSObject": "AttachedContentDocument",
1476
+ "deprecatedAndHidden": false,
1477
+ "field": "LinkedEntityId",
1478
+ "junctionIdListNames": [],
1479
+ "junctionReferenceTo": [],
1480
+ "relationshipName": "AttachedContentDocuments",
1481
+ "restrictedDelete": false
1482
+ },
1483
+ {
1484
+ "cascadeDelete": true,
1485
+ "childSObject": "Attachment",
1486
+ "deprecatedAndHidden": false,
1487
+ "field": "ParentId",
1488
+ "junctionIdListNames": [],
1489
+ "junctionReferenceTo": [],
1490
+ "relationshipName": "Attachments",
1491
+ "restrictedDelete": false
1492
+ },
1493
+ {
1494
+ "cascadeDelete": true,
1495
+ "childSObject": "CampaignMember",
1496
+ "deprecatedAndHidden": false,
1497
+ "field": "LeadId",
1498
+ "junctionIdListNames": [],
1499
+ "junctionReferenceTo": [],
1500
+ "relationshipName": "CampaignMembers",
1501
+ "restrictedDelete": false
1502
+ },
1503
+ {
1504
+ "cascadeDelete": false,
1505
+ "childSObject": "CampaignMember",
1506
+ "deprecatedAndHidden": false,
1507
+ "field": "LeadOrContactId",
1508
+ "junctionIdListNames": [],
1509
+ "junctionReferenceTo": [],
1510
+ "relationshipName": null,
1511
+ "restrictedDelete": false
1512
+ },
1513
+ {
1514
+ "cascadeDelete": false,
1515
+ "childSObject": "CampaignMemberChangeEvent",
1516
+ "deprecatedAndHidden": false,
1517
+ "field": "LeadId",
1518
+ "junctionIdListNames": [],
1519
+ "junctionReferenceTo": [],
1520
+ "relationshipName": null,
1521
+ "restrictedDelete": false
1522
+ },
1523
+ {
1524
+ "cascadeDelete": true,
1525
+ "childSObject": "CollaborationGroupRecord",
1526
+ "deprecatedAndHidden": false,
1527
+ "field": "RecordId",
1528
+ "junctionIdListNames": [],
1529
+ "junctionReferenceTo": [],
1530
+ "relationshipName": "RecordAssociatedGroups",
1531
+ "restrictedDelete": false
1532
+ },
1533
+ {
1534
+ "cascadeDelete": true,
1535
+ "childSObject": "CombinedAttachment",
1536
+ "deprecatedAndHidden": false,
1537
+ "field": "ParentId",
1538
+ "junctionIdListNames": [],
1539
+ "junctionReferenceTo": [],
1540
+ "relationshipName": "CombinedAttachments",
1541
+ "restrictedDelete": false
1542
+ },
1543
+ {
1544
+ "cascadeDelete": false,
1545
+ "childSObject": "ContactRequest",
1546
+ "deprecatedAndHidden": false,
1547
+ "field": "WhoId",
1548
+ "junctionIdListNames": [],
1549
+ "junctionReferenceTo": [],
1550
+ "relationshipName": "ContactRequests",
1551
+ "restrictedDelete": false
1552
+ },
1553
+ {
1554
+ "cascadeDelete": true,
1555
+ "childSObject": "ContentDistribution",
1556
+ "deprecatedAndHidden": false,
1557
+ "field": "RelatedRecordId",
1558
+ "junctionIdListNames": [],
1559
+ "junctionReferenceTo": [],
1560
+ "relationshipName": null,
1561
+ "restrictedDelete": false
1562
+ },
1563
+ {
1564
+ "cascadeDelete": true,
1565
+ "childSObject": "ContentDocumentLink",
1566
+ "deprecatedAndHidden": false,
1567
+ "field": "LinkedEntityId",
1568
+ "junctionIdListNames": [],
1569
+ "junctionReferenceTo": [],
1570
+ "relationshipName": "ContentDocumentLinks",
1571
+ "restrictedDelete": false
1572
+ },
1573
+ {
1574
+ "cascadeDelete": false,
1575
+ "childSObject": "ContentDocumentLinkChangeEvent",
1576
+ "deprecatedAndHidden": false,
1577
+ "field": "LinkedEntityId",
1578
+ "junctionIdListNames": [],
1579
+ "junctionReferenceTo": [],
1580
+ "relationshipName": null,
1581
+ "restrictedDelete": false
1582
+ },
1583
+ {
1584
+ "cascadeDelete": false,
1585
+ "childSObject": "ContentVersion",
1586
+ "deprecatedAndHidden": false,
1587
+ "field": "FirstPublishLocationId",
1588
+ "junctionIdListNames": [],
1589
+ "junctionReferenceTo": [],
1590
+ "relationshipName": null,
1591
+ "restrictedDelete": false
1592
+ },
1593
+ {
1594
+ "cascadeDelete": false,
1595
+ "childSObject": "ContentVersionChangeEvent",
1596
+ "deprecatedAndHidden": false,
1597
+ "field": "FirstPublishLocationId",
1598
+ "junctionIdListNames": [],
1599
+ "junctionReferenceTo": [],
1600
+ "relationshipName": null,
1601
+ "restrictedDelete": false
1602
+ },
1603
+ {
1604
+ "cascadeDelete": false,
1605
+ "childSObject": "DeclinedEventRelation",
1606
+ "deprecatedAndHidden": false,
1607
+ "field": "RelationId",
1608
+ "junctionIdListNames": [],
1609
+ "junctionReferenceTo": [],
1610
+ "relationshipName": "DeclinedEventRelations",
1611
+ "restrictedDelete": false
1612
+ },
1613
+ {
1614
+ "cascadeDelete": true,
1615
+ "childSObject": "DuplicateRecordItem",
1616
+ "deprecatedAndHidden": false,
1617
+ "field": "RecordId",
1618
+ "junctionIdListNames": [],
1619
+ "junctionReferenceTo": [],
1620
+ "relationshipName": "DuplicateRecordItems",
1621
+ "restrictedDelete": false
1622
+ },
1623
+ {
1624
+ "cascadeDelete": true,
1625
+ "childSObject": "EmailMessageRelation",
1626
+ "deprecatedAndHidden": false,
1627
+ "field": "RelationId",
1628
+ "junctionIdListNames": [],
1629
+ "junctionReferenceTo": [],
1630
+ "relationshipName": "EmailMessageRelations",
1631
+ "restrictedDelete": false
1632
+ },
1633
+ {
1634
+ "cascadeDelete": true,
1635
+ "childSObject": "EmailStatus",
1636
+ "deprecatedAndHidden": false,
1637
+ "field": "WhoId",
1638
+ "junctionIdListNames": [],
1639
+ "junctionReferenceTo": [],
1640
+ "relationshipName": "EmailStatuses",
1641
+ "restrictedDelete": false
1642
+ },
1643
+ {
1644
+ "cascadeDelete": true,
1645
+ "childSObject": "EntitySubscription",
1646
+ "deprecatedAndHidden": false,
1647
+ "field": "ParentId",
1648
+ "junctionIdListNames": [],
1649
+ "junctionReferenceTo": [],
1650
+ "relationshipName": "FeedSubscriptionsForEntity",
1651
+ "restrictedDelete": false
1652
+ },
1653
+ {
1654
+ "cascadeDelete": true,
1655
+ "childSObject": "Event",
1656
+ "deprecatedAndHidden": false,
1657
+ "field": "WhoId",
1658
+ "junctionIdListNames": [],
1659
+ "junctionReferenceTo": [],
1660
+ "relationshipName": "Events",
1661
+ "restrictedDelete": false
1662
+ },
1663
+ {
1664
+ "cascadeDelete": false,
1665
+ "childSObject": "EventChangeEvent",
1666
+ "deprecatedAndHidden": false,
1667
+ "field": "WhoId",
1668
+ "junctionIdListNames": [],
1669
+ "junctionReferenceTo": [],
1670
+ "relationshipName": null,
1671
+ "restrictedDelete": false
1672
+ },
1673
+ {
1674
+ "cascadeDelete": true,
1675
+ "childSObject": "EventRelation",
1676
+ "deprecatedAndHidden": false,
1677
+ "field": "RelationId",
1678
+ "junctionIdListNames": [],
1679
+ "junctionReferenceTo": [],
1680
+ "relationshipName": "EventRelations",
1681
+ "restrictedDelete": false
1682
+ },
1683
+ {
1684
+ "cascadeDelete": false,
1685
+ "childSObject": "EventRelationChangeEvent",
1686
+ "deprecatedAndHidden": false,
1687
+ "field": "RelationId",
1688
+ "junctionIdListNames": [],
1689
+ "junctionReferenceTo": [],
1690
+ "relationshipName": null,
1691
+ "restrictedDelete": false
1692
+ },
1693
+ {
1694
+ "cascadeDelete": false,
1695
+ "childSObject": "FeedComment",
1696
+ "deprecatedAndHidden": false,
1697
+ "field": "ParentId",
1698
+ "junctionIdListNames": [],
1699
+ "junctionReferenceTo": [],
1700
+ "relationshipName": null,
1701
+ "restrictedDelete": false
1702
+ },
1703
+ {
1704
+ "cascadeDelete": true,
1705
+ "childSObject": "FeedItem",
1706
+ "deprecatedAndHidden": false,
1707
+ "field": "ParentId",
1708
+ "junctionIdListNames": [],
1709
+ "junctionReferenceTo": [],
1710
+ "relationshipName": null,
1711
+ "restrictedDelete": false
1712
+ },
1713
+ {
1714
+ "cascadeDelete": false,
1715
+ "childSObject": "FlowExecutionErrorEvent",
1716
+ "deprecatedAndHidden": false,
1717
+ "field": "ContextRecordId",
1718
+ "junctionIdListNames": [],
1719
+ "junctionReferenceTo": [],
1720
+ "relationshipName": null,
1721
+ "restrictedDelete": false
1722
+ },
1723
+ {
1724
+ "cascadeDelete": false,
1725
+ "childSObject": "FlowOrchestrationWorkItem",
1726
+ "deprecatedAndHidden": false,
1727
+ "field": "RelatedRecordId",
1728
+ "junctionIdListNames": [],
1729
+ "junctionReferenceTo": [],
1730
+ "relationshipName": null,
1731
+ "restrictedDelete": false
1732
+ },
1733
+ {
1734
+ "cascadeDelete": false,
1735
+ "childSObject": "FlowRecordRelation",
1736
+ "deprecatedAndHidden": false,
1737
+ "field": "RelatedRecordId",
1738
+ "junctionIdListNames": [],
1739
+ "junctionReferenceTo": [],
1740
+ "relationshipName": null,
1741
+ "restrictedDelete": false
1742
+ },
1743
+ {
1744
+ "cascadeDelete": true,
1745
+ "childSObject": "LeadCleanInfo",
1746
+ "deprecatedAndHidden": false,
1747
+ "field": "LeadId",
1748
+ "junctionIdListNames": [],
1749
+ "junctionReferenceTo": [],
1750
+ "relationshipName": "LeadCleanInfos",
1751
+ "restrictedDelete": false
1752
+ },
1753
+ {
1754
+ "cascadeDelete": true,
1755
+ "childSObject": "LeadFeed",
1756
+ "deprecatedAndHidden": false,
1757
+ "field": "ParentId",
1758
+ "junctionIdListNames": [],
1759
+ "junctionReferenceTo": [],
1760
+ "relationshipName": "Feeds",
1761
+ "restrictedDelete": false
1762
+ },
1763
+ {
1764
+ "cascadeDelete": true,
1765
+ "childSObject": "LeadHistory",
1766
+ "deprecatedAndHidden": false,
1767
+ "field": "LeadId",
1768
+ "junctionIdListNames": [],
1769
+ "junctionReferenceTo": [],
1770
+ "relationshipName": "Histories",
1771
+ "restrictedDelete": false
1772
+ },
1773
+ {
1774
+ "cascadeDelete": true,
1775
+ "childSObject": "LeadShare",
1776
+ "deprecatedAndHidden": false,
1777
+ "field": "LeadId",
1778
+ "junctionIdListNames": [],
1779
+ "junctionReferenceTo": [],
1780
+ "relationshipName": "Shares",
1781
+ "restrictedDelete": false
1782
+ },
1783
+ {
1784
+ "cascadeDelete": true,
1785
+ "childSObject": "ListEmailIndividualRecipient",
1786
+ "deprecatedAndHidden": false,
1787
+ "field": "RecipientId",
1788
+ "junctionIdListNames": [],
1789
+ "junctionReferenceTo": [],
1790
+ "relationshipName": "ListEmailIndividualRecipients",
1791
+ "restrictedDelete": false
1792
+ },
1793
+ {
1794
+ "cascadeDelete": false,
1795
+ "childSObject": "MessagingEndUser",
1796
+ "deprecatedAndHidden": false,
1797
+ "field": "LeadId",
1798
+ "junctionIdListNames": [],
1799
+ "junctionReferenceTo": [],
1800
+ "relationshipName": "MessagingEndUsers",
1801
+ "restrictedDelete": false
1802
+ },
1803
+ {
1804
+ "cascadeDelete": false,
1805
+ "childSObject": "MessagingSession",
1806
+ "deprecatedAndHidden": false,
1807
+ "field": "LeadId",
1808
+ "junctionIdListNames": [],
1809
+ "junctionReferenceTo": [],
1810
+ "relationshipName": "MessagingSessions",
1811
+ "restrictedDelete": false
1812
+ },
1813
+ {
1814
+ "cascadeDelete": true,
1815
+ "childSObject": "Note",
1816
+ "deprecatedAndHidden": false,
1817
+ "field": "ParentId",
1818
+ "junctionIdListNames": [],
1819
+ "junctionReferenceTo": [],
1820
+ "relationshipName": "Notes",
1821
+ "restrictedDelete": false
1822
+ },
1823
+ {
1824
+ "cascadeDelete": true,
1825
+ "childSObject": "NoteAndAttachment",
1826
+ "deprecatedAndHidden": false,
1827
+ "field": "ParentId",
1828
+ "junctionIdListNames": [],
1829
+ "junctionReferenceTo": [],
1830
+ "relationshipName": "NotesAndAttachments",
1831
+ "restrictedDelete": false
1832
+ },
1833
+ {
1834
+ "cascadeDelete": true,
1835
+ "childSObject": "OpenActivity",
1836
+ "deprecatedAndHidden": false,
1837
+ "field": "WhoId",
1838
+ "junctionIdListNames": [],
1839
+ "junctionReferenceTo": [],
1840
+ "relationshipName": "OpenActivities",
1841
+ "restrictedDelete": false
1842
+ },
1843
+ {
1844
+ "cascadeDelete": false,
1845
+ "childSObject": "OutgoingEmail",
1846
+ "deprecatedAndHidden": false,
1847
+ "field": "WhoId",
1848
+ "junctionIdListNames": [],
1849
+ "junctionReferenceTo": [],
1850
+ "relationshipName": null,
1851
+ "restrictedDelete": false
1852
+ },
1853
+ {
1854
+ "cascadeDelete": false,
1855
+ "childSObject": "OutgoingEmailRelation",
1856
+ "deprecatedAndHidden": false,
1857
+ "field": "RelationId",
1858
+ "junctionIdListNames": [],
1859
+ "junctionReferenceTo": [],
1860
+ "relationshipName": "OutgoingEmailRelations",
1861
+ "restrictedDelete": false
1862
+ },
1863
+ {
1864
+ "cascadeDelete": true,
1865
+ "childSObject": "ProcessInstance",
1866
+ "deprecatedAndHidden": false,
1867
+ "field": "TargetObjectId",
1868
+ "junctionIdListNames": [],
1869
+ "junctionReferenceTo": [],
1870
+ "relationshipName": "ProcessInstances",
1871
+ "restrictedDelete": false
1872
+ },
1873
+ {
1874
+ "cascadeDelete": false,
1875
+ "childSObject": "ProcessInstanceHistory",
1876
+ "deprecatedAndHidden": false,
1877
+ "field": "TargetObjectId",
1878
+ "junctionIdListNames": [],
1879
+ "junctionReferenceTo": [],
1880
+ "relationshipName": "ProcessSteps",
1881
+ "restrictedDelete": false
1882
+ },
1883
+ {
1884
+ "cascadeDelete": true,
1885
+ "childSObject": "RecordAction",
1886
+ "deprecatedAndHidden": false,
1887
+ "field": "RecordId",
1888
+ "junctionIdListNames": [],
1889
+ "junctionReferenceTo": [],
1890
+ "relationshipName": "RecordActions",
1891
+ "restrictedDelete": false
1892
+ },
1893
+ {
1894
+ "cascadeDelete": false,
1895
+ "childSObject": "RecordActionHistory",
1896
+ "deprecatedAndHidden": false,
1897
+ "field": "ParentRecordId",
1898
+ "junctionIdListNames": [],
1899
+ "junctionReferenceTo": [],
1900
+ "relationshipName": "RecordActionHistories",
1901
+ "restrictedDelete": false
1902
+ },
1903
+ {
1904
+ "cascadeDelete": true,
1905
+ "childSObject": "ServiceAppointment",
1906
+ "deprecatedAndHidden": false,
1907
+ "field": "ParentRecordId",
1908
+ "junctionIdListNames": [],
1909
+ "junctionReferenceTo": [],
1910
+ "relationshipName": "ServiceAppointments",
1911
+ "restrictedDelete": false
1912
+ },
1913
+ {
1914
+ "cascadeDelete": false,
1915
+ "childSObject": "ServiceAppointmentChangeEvent",
1916
+ "deprecatedAndHidden": false,
1917
+ "field": "ParentRecordId",
1918
+ "junctionIdListNames": [],
1919
+ "junctionReferenceTo": [],
1920
+ "relationshipName": null,
1921
+ "restrictedDelete": false
1922
+ },
1923
+ {
1924
+ "cascadeDelete": true,
1925
+ "childSObject": "Task",
1926
+ "deprecatedAndHidden": false,
1927
+ "field": "WhoId",
1928
+ "junctionIdListNames": [],
1929
+ "junctionReferenceTo": [],
1930
+ "relationshipName": "Tasks",
1931
+ "restrictedDelete": false
1932
+ },
1933
+ {
1934
+ "cascadeDelete": false,
1935
+ "childSObject": "TaskChangeEvent",
1936
+ "deprecatedAndHidden": false,
1937
+ "field": "WhoId",
1938
+ "junctionIdListNames": [],
1939
+ "junctionReferenceTo": [],
1940
+ "relationshipName": null,
1941
+ "restrictedDelete": false
1942
+ },
1943
+ {
1944
+ "cascadeDelete": true,
1945
+ "childSObject": "TopicAssignment",
1946
+ "deprecatedAndHidden": false,
1947
+ "field": "EntityId",
1948
+ "junctionIdListNames": [],
1949
+ "junctionReferenceTo": [],
1950
+ "relationshipName": "TopicAssignments",
1951
+ "restrictedDelete": false
1952
+ },
1953
+ {
1954
+ "cascadeDelete": false,
1955
+ "childSObject": "UndecidedEventRelation",
1956
+ "deprecatedAndHidden": false,
1957
+ "field": "RelationId",
1958
+ "junctionIdListNames": [],
1959
+ "junctionReferenceTo": [],
1960
+ "relationshipName": "UndecidedEventRelations",
1961
+ "restrictedDelete": false
1962
+ },
1963
+ {
1964
+ "cascadeDelete": true,
1965
+ "childSObject": "UserEmailPreferredPerson",
1966
+ "deprecatedAndHidden": false,
1967
+ "field": "PersonRecordId",
1968
+ "junctionIdListNames": [],
1969
+ "junctionReferenceTo": [],
1970
+ "relationshipName": "PersonRecord",
1971
+ "restrictedDelete": false
1972
+ }
1973
+ ],
1974
+ "custom": false,
1975
+ "name": "Lead",
1976
+ "queryable": true
1977
+ }