@schandlergarcia/sf-web-components 1.2.6 → 1.2.7

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 +5 -5
  165. package/src/templates/pages/NotFound.tsx.template +2 -2
@@ -0,0 +1,2952 @@
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": "Account 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
+ "Account"
51
+ ],
52
+ "relationshipName": "MasterRecord",
53
+ "sortable": true,
54
+ "type": "reference"
55
+ },
56
+ {
57
+ "aggregatable": true,
58
+ "custom": false,
59
+ "defaultValue": null,
60
+ "extraTypeInfo": "switchablepersonname",
61
+ "filterable": true,
62
+ "groupable": true,
63
+ "inlineHelpText": null,
64
+ "label": "Account Name",
65
+ "name": "Name",
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": null,
78
+ "filterable": true,
79
+ "groupable": true,
80
+ "inlineHelpText": null,
81
+ "label": "Account Type",
82
+ "name": "Type",
83
+ "nillable": true,
84
+ "picklistValues": [
85
+ {
86
+ "active": true,
87
+ "defaultValue": false,
88
+ "label": "Prospect",
89
+ "validFor": null,
90
+ "value": "Prospect"
91
+ },
92
+ {
93
+ "active": true,
94
+ "defaultValue": false,
95
+ "label": "Customer - Direct",
96
+ "validFor": null,
97
+ "value": "Customer - Direct"
98
+ },
99
+ {
100
+ "active": true,
101
+ "defaultValue": false,
102
+ "label": "Customer - Channel",
103
+ "validFor": null,
104
+ "value": "Customer - Channel"
105
+ },
106
+ {
107
+ "active": true,
108
+ "defaultValue": false,
109
+ "label": "Channel Partner / Reseller",
110
+ "validFor": null,
111
+ "value": "Channel Partner / Reseller"
112
+ },
113
+ {
114
+ "active": true,
115
+ "defaultValue": false,
116
+ "label": "Installation Partner",
117
+ "validFor": null,
118
+ "value": "Installation Partner"
119
+ },
120
+ {
121
+ "active": true,
122
+ "defaultValue": false,
123
+ "label": "Technology Partner",
124
+ "validFor": null,
125
+ "value": "Technology Partner"
126
+ },
127
+ {
128
+ "active": true,
129
+ "defaultValue": false,
130
+ "label": "Other",
131
+ "validFor": null,
132
+ "value": "Other"
133
+ }
134
+ ],
135
+ "referenceTo": [],
136
+ "relationshipName": null,
137
+ "sortable": true,
138
+ "type": "picklist"
139
+ },
140
+ {
141
+ "aggregatable": true,
142
+ "custom": false,
143
+ "defaultValue": null,
144
+ "extraTypeInfo": null,
145
+ "filterable": true,
146
+ "groupable": true,
147
+ "inlineHelpText": null,
148
+ "label": "Parent Account ID",
149
+ "name": "ParentId",
150
+ "nillable": true,
151
+ "picklistValues": [],
152
+ "referenceTo": [
153
+ "Account"
154
+ ],
155
+ "relationshipName": "Parent",
156
+ "sortable": true,
157
+ "type": "reference"
158
+ },
159
+ {
160
+ "aggregatable": true,
161
+ "custom": false,
162
+ "defaultValue": null,
163
+ "extraTypeInfo": "plaintextarea",
164
+ "filterable": true,
165
+ "groupable": true,
166
+ "inlineHelpText": null,
167
+ "label": "Billing Street",
168
+ "name": "BillingStreet",
169
+ "nillable": true,
170
+ "picklistValues": [],
171
+ "referenceTo": [],
172
+ "relationshipName": null,
173
+ "sortable": true,
174
+ "type": "textarea"
175
+ },
176
+ {
177
+ "aggregatable": true,
178
+ "custom": false,
179
+ "defaultValue": null,
180
+ "extraTypeInfo": null,
181
+ "filterable": true,
182
+ "groupable": true,
183
+ "inlineHelpText": null,
184
+ "label": "Billing City",
185
+ "name": "BillingCity",
186
+ "nillable": true,
187
+ "picklistValues": [],
188
+ "referenceTo": [],
189
+ "relationshipName": null,
190
+ "sortable": true,
191
+ "type": "string"
192
+ },
193
+ {
194
+ "aggregatable": true,
195
+ "custom": false,
196
+ "defaultValue": null,
197
+ "extraTypeInfo": null,
198
+ "filterable": true,
199
+ "groupable": true,
200
+ "inlineHelpText": null,
201
+ "label": "Billing State/Province",
202
+ "name": "BillingState",
203
+ "nillable": true,
204
+ "picklistValues": [],
205
+ "referenceTo": [],
206
+ "relationshipName": null,
207
+ "sortable": true,
208
+ "type": "string"
209
+ },
210
+ {
211
+ "aggregatable": true,
212
+ "custom": false,
213
+ "defaultValue": null,
214
+ "extraTypeInfo": null,
215
+ "filterable": true,
216
+ "groupable": true,
217
+ "inlineHelpText": null,
218
+ "label": "Billing Zip/Postal Code",
219
+ "name": "BillingPostalCode",
220
+ "nillable": true,
221
+ "picklistValues": [],
222
+ "referenceTo": [],
223
+ "relationshipName": null,
224
+ "sortable": true,
225
+ "type": "string"
226
+ },
227
+ {
228
+ "aggregatable": true,
229
+ "custom": false,
230
+ "defaultValue": null,
231
+ "extraTypeInfo": null,
232
+ "filterable": true,
233
+ "groupable": true,
234
+ "inlineHelpText": null,
235
+ "label": "Billing Country",
236
+ "name": "BillingCountry",
237
+ "nillable": true,
238
+ "picklistValues": [],
239
+ "referenceTo": [],
240
+ "relationshipName": null,
241
+ "sortable": true,
242
+ "type": "string"
243
+ },
244
+ {
245
+ "aggregatable": true,
246
+ "custom": false,
247
+ "defaultValue": null,
248
+ "extraTypeInfo": null,
249
+ "filterable": true,
250
+ "groupable": false,
251
+ "inlineHelpText": null,
252
+ "label": "Billing Latitude",
253
+ "name": "BillingLatitude",
254
+ "nillable": true,
255
+ "picklistValues": [],
256
+ "referenceTo": [],
257
+ "relationshipName": null,
258
+ "sortable": true,
259
+ "type": "double"
260
+ },
261
+ {
262
+ "aggregatable": true,
263
+ "custom": false,
264
+ "defaultValue": null,
265
+ "extraTypeInfo": null,
266
+ "filterable": true,
267
+ "groupable": false,
268
+ "inlineHelpText": null,
269
+ "label": "Billing Longitude",
270
+ "name": "BillingLongitude",
271
+ "nillable": true,
272
+ "picklistValues": [],
273
+ "referenceTo": [],
274
+ "relationshipName": null,
275
+ "sortable": true,
276
+ "type": "double"
277
+ },
278
+ {
279
+ "aggregatable": true,
280
+ "custom": false,
281
+ "defaultValue": null,
282
+ "extraTypeInfo": null,
283
+ "filterable": true,
284
+ "groupable": true,
285
+ "inlineHelpText": null,
286
+ "label": "Billing Geocode Accuracy",
287
+ "name": "BillingGeocodeAccuracy",
288
+ "nillable": true,
289
+ "picklistValues": [
290
+ {
291
+ "active": true,
292
+ "defaultValue": false,
293
+ "label": "Address",
294
+ "validFor": null,
295
+ "value": "Address"
296
+ },
297
+ {
298
+ "active": true,
299
+ "defaultValue": false,
300
+ "label": "NearAddress",
301
+ "validFor": null,
302
+ "value": "NearAddress"
303
+ },
304
+ {
305
+ "active": true,
306
+ "defaultValue": false,
307
+ "label": "Block",
308
+ "validFor": null,
309
+ "value": "Block"
310
+ },
311
+ {
312
+ "active": true,
313
+ "defaultValue": false,
314
+ "label": "Street",
315
+ "validFor": null,
316
+ "value": "Street"
317
+ },
318
+ {
319
+ "active": true,
320
+ "defaultValue": false,
321
+ "label": "ExtendedZip",
322
+ "validFor": null,
323
+ "value": "ExtendedZip"
324
+ },
325
+ {
326
+ "active": true,
327
+ "defaultValue": false,
328
+ "label": "Zip",
329
+ "validFor": null,
330
+ "value": "Zip"
331
+ },
332
+ {
333
+ "active": true,
334
+ "defaultValue": false,
335
+ "label": "Neighborhood",
336
+ "validFor": null,
337
+ "value": "Neighborhood"
338
+ },
339
+ {
340
+ "active": true,
341
+ "defaultValue": false,
342
+ "label": "City",
343
+ "validFor": null,
344
+ "value": "City"
345
+ },
346
+ {
347
+ "active": true,
348
+ "defaultValue": false,
349
+ "label": "County",
350
+ "validFor": null,
351
+ "value": "County"
352
+ },
353
+ {
354
+ "active": true,
355
+ "defaultValue": false,
356
+ "label": "State",
357
+ "validFor": null,
358
+ "value": "State"
359
+ },
360
+ {
361
+ "active": true,
362
+ "defaultValue": false,
363
+ "label": "Unknown",
364
+ "validFor": null,
365
+ "value": "Unknown"
366
+ }
367
+ ],
368
+ "referenceTo": [],
369
+ "relationshipName": null,
370
+ "sortable": true,
371
+ "type": "picklist"
372
+ },
373
+ {
374
+ "aggregatable": false,
375
+ "custom": false,
376
+ "defaultValue": null,
377
+ "extraTypeInfo": null,
378
+ "filterable": true,
379
+ "groupable": false,
380
+ "inlineHelpText": null,
381
+ "label": "Billing Address",
382
+ "name": "BillingAddress",
383
+ "nillable": true,
384
+ "picklistValues": [],
385
+ "referenceTo": [],
386
+ "relationshipName": null,
387
+ "sortable": false,
388
+ "type": "address"
389
+ },
390
+ {
391
+ "aggregatable": true,
392
+ "custom": false,
393
+ "defaultValue": null,
394
+ "extraTypeInfo": "plaintextarea",
395
+ "filterable": true,
396
+ "groupable": true,
397
+ "inlineHelpText": null,
398
+ "label": "Shipping Street",
399
+ "name": "ShippingStreet",
400
+ "nillable": true,
401
+ "picklistValues": [],
402
+ "referenceTo": [],
403
+ "relationshipName": null,
404
+ "sortable": true,
405
+ "type": "textarea"
406
+ },
407
+ {
408
+ "aggregatable": true,
409
+ "custom": false,
410
+ "defaultValue": null,
411
+ "extraTypeInfo": null,
412
+ "filterable": true,
413
+ "groupable": true,
414
+ "inlineHelpText": null,
415
+ "label": "Shipping City",
416
+ "name": "ShippingCity",
417
+ "nillable": true,
418
+ "picklistValues": [],
419
+ "referenceTo": [],
420
+ "relationshipName": null,
421
+ "sortable": true,
422
+ "type": "string"
423
+ },
424
+ {
425
+ "aggregatable": true,
426
+ "custom": false,
427
+ "defaultValue": null,
428
+ "extraTypeInfo": null,
429
+ "filterable": true,
430
+ "groupable": true,
431
+ "inlineHelpText": null,
432
+ "label": "Shipping State/Province",
433
+ "name": "ShippingState",
434
+ "nillable": true,
435
+ "picklistValues": [],
436
+ "referenceTo": [],
437
+ "relationshipName": null,
438
+ "sortable": true,
439
+ "type": "string"
440
+ },
441
+ {
442
+ "aggregatable": true,
443
+ "custom": false,
444
+ "defaultValue": null,
445
+ "extraTypeInfo": null,
446
+ "filterable": true,
447
+ "groupable": true,
448
+ "inlineHelpText": null,
449
+ "label": "Shipping Zip/Postal Code",
450
+ "name": "ShippingPostalCode",
451
+ "nillable": true,
452
+ "picklistValues": [],
453
+ "referenceTo": [],
454
+ "relationshipName": null,
455
+ "sortable": true,
456
+ "type": "string"
457
+ },
458
+ {
459
+ "aggregatable": true,
460
+ "custom": false,
461
+ "defaultValue": null,
462
+ "extraTypeInfo": null,
463
+ "filterable": true,
464
+ "groupable": true,
465
+ "inlineHelpText": null,
466
+ "label": "Shipping Country",
467
+ "name": "ShippingCountry",
468
+ "nillable": true,
469
+ "picklistValues": [],
470
+ "referenceTo": [],
471
+ "relationshipName": null,
472
+ "sortable": true,
473
+ "type": "string"
474
+ },
475
+ {
476
+ "aggregatable": true,
477
+ "custom": false,
478
+ "defaultValue": null,
479
+ "extraTypeInfo": null,
480
+ "filterable": true,
481
+ "groupable": false,
482
+ "inlineHelpText": null,
483
+ "label": "Shipping Latitude",
484
+ "name": "ShippingLatitude",
485
+ "nillable": true,
486
+ "picklistValues": [],
487
+ "referenceTo": [],
488
+ "relationshipName": null,
489
+ "sortable": true,
490
+ "type": "double"
491
+ },
492
+ {
493
+ "aggregatable": true,
494
+ "custom": false,
495
+ "defaultValue": null,
496
+ "extraTypeInfo": null,
497
+ "filterable": true,
498
+ "groupable": false,
499
+ "inlineHelpText": null,
500
+ "label": "Shipping Longitude",
501
+ "name": "ShippingLongitude",
502
+ "nillable": true,
503
+ "picklistValues": [],
504
+ "referenceTo": [],
505
+ "relationshipName": null,
506
+ "sortable": true,
507
+ "type": "double"
508
+ },
509
+ {
510
+ "aggregatable": true,
511
+ "custom": false,
512
+ "defaultValue": null,
513
+ "extraTypeInfo": null,
514
+ "filterable": true,
515
+ "groupable": true,
516
+ "inlineHelpText": null,
517
+ "label": "Shipping Geocode Accuracy",
518
+ "name": "ShippingGeocodeAccuracy",
519
+ "nillable": true,
520
+ "picklistValues": [
521
+ {
522
+ "active": true,
523
+ "defaultValue": false,
524
+ "label": "Address",
525
+ "validFor": null,
526
+ "value": "Address"
527
+ },
528
+ {
529
+ "active": true,
530
+ "defaultValue": false,
531
+ "label": "NearAddress",
532
+ "validFor": null,
533
+ "value": "NearAddress"
534
+ },
535
+ {
536
+ "active": true,
537
+ "defaultValue": false,
538
+ "label": "Block",
539
+ "validFor": null,
540
+ "value": "Block"
541
+ },
542
+ {
543
+ "active": true,
544
+ "defaultValue": false,
545
+ "label": "Street",
546
+ "validFor": null,
547
+ "value": "Street"
548
+ },
549
+ {
550
+ "active": true,
551
+ "defaultValue": false,
552
+ "label": "ExtendedZip",
553
+ "validFor": null,
554
+ "value": "ExtendedZip"
555
+ },
556
+ {
557
+ "active": true,
558
+ "defaultValue": false,
559
+ "label": "Zip",
560
+ "validFor": null,
561
+ "value": "Zip"
562
+ },
563
+ {
564
+ "active": true,
565
+ "defaultValue": false,
566
+ "label": "Neighborhood",
567
+ "validFor": null,
568
+ "value": "Neighborhood"
569
+ },
570
+ {
571
+ "active": true,
572
+ "defaultValue": false,
573
+ "label": "City",
574
+ "validFor": null,
575
+ "value": "City"
576
+ },
577
+ {
578
+ "active": true,
579
+ "defaultValue": false,
580
+ "label": "County",
581
+ "validFor": null,
582
+ "value": "County"
583
+ },
584
+ {
585
+ "active": true,
586
+ "defaultValue": false,
587
+ "label": "State",
588
+ "validFor": null,
589
+ "value": "State"
590
+ },
591
+ {
592
+ "active": true,
593
+ "defaultValue": false,
594
+ "label": "Unknown",
595
+ "validFor": null,
596
+ "value": "Unknown"
597
+ }
598
+ ],
599
+ "referenceTo": [],
600
+ "relationshipName": null,
601
+ "sortable": true,
602
+ "type": "picklist"
603
+ },
604
+ {
605
+ "aggregatable": false,
606
+ "custom": false,
607
+ "defaultValue": null,
608
+ "extraTypeInfo": null,
609
+ "filterable": true,
610
+ "groupable": false,
611
+ "inlineHelpText": null,
612
+ "label": "Shipping Address",
613
+ "name": "ShippingAddress",
614
+ "nillable": true,
615
+ "picklistValues": [],
616
+ "referenceTo": [],
617
+ "relationshipName": null,
618
+ "sortable": false,
619
+ "type": "address"
620
+ },
621
+ {
622
+ "aggregatable": true,
623
+ "custom": false,
624
+ "defaultValue": null,
625
+ "extraTypeInfo": null,
626
+ "filterable": true,
627
+ "groupable": true,
628
+ "inlineHelpText": null,
629
+ "label": "Account Phone",
630
+ "name": "Phone",
631
+ "nillable": true,
632
+ "picklistValues": [],
633
+ "referenceTo": [],
634
+ "relationshipName": null,
635
+ "sortable": true,
636
+ "type": "phone"
637
+ },
638
+ {
639
+ "aggregatable": true,
640
+ "custom": false,
641
+ "defaultValue": null,
642
+ "extraTypeInfo": null,
643
+ "filterable": true,
644
+ "groupable": true,
645
+ "inlineHelpText": null,
646
+ "label": "Account Fax",
647
+ "name": "Fax",
648
+ "nillable": true,
649
+ "picklistValues": [],
650
+ "referenceTo": [],
651
+ "relationshipName": null,
652
+ "sortable": true,
653
+ "type": "phone"
654
+ },
655
+ {
656
+ "aggregatable": true,
657
+ "custom": false,
658
+ "defaultValue": null,
659
+ "extraTypeInfo": null,
660
+ "filterable": true,
661
+ "groupable": true,
662
+ "inlineHelpText": null,
663
+ "label": "Account Number",
664
+ "name": "AccountNumber",
665
+ "nillable": true,
666
+ "picklistValues": [],
667
+ "referenceTo": [],
668
+ "relationshipName": null,
669
+ "sortable": true,
670
+ "type": "string"
671
+ },
672
+ {
673
+ "aggregatable": true,
674
+ "custom": false,
675
+ "defaultValue": null,
676
+ "extraTypeInfo": null,
677
+ "filterable": true,
678
+ "groupable": true,
679
+ "inlineHelpText": null,
680
+ "label": "Website",
681
+ "name": "Website",
682
+ "nillable": true,
683
+ "picklistValues": [],
684
+ "referenceTo": [],
685
+ "relationshipName": null,
686
+ "sortable": true,
687
+ "type": "url"
688
+ },
689
+ {
690
+ "aggregatable": true,
691
+ "custom": false,
692
+ "defaultValue": null,
693
+ "extraTypeInfo": "imageurl",
694
+ "filterable": true,
695
+ "groupable": true,
696
+ "inlineHelpText": null,
697
+ "label": "Photo URL",
698
+ "name": "PhotoUrl",
699
+ "nillable": true,
700
+ "picklistValues": [],
701
+ "referenceTo": [],
702
+ "relationshipName": null,
703
+ "sortable": true,
704
+ "type": "url"
705
+ },
706
+ {
707
+ "aggregatable": true,
708
+ "custom": false,
709
+ "defaultValue": null,
710
+ "extraTypeInfo": null,
711
+ "filterable": true,
712
+ "groupable": true,
713
+ "inlineHelpText": null,
714
+ "label": "SIC Code",
715
+ "name": "Sic",
716
+ "nillable": true,
717
+ "picklistValues": [],
718
+ "referenceTo": [],
719
+ "relationshipName": null,
720
+ "sortable": true,
721
+ "type": "string"
722
+ },
723
+ {
724
+ "aggregatable": true,
725
+ "custom": false,
726
+ "defaultValue": null,
727
+ "extraTypeInfo": null,
728
+ "filterable": true,
729
+ "groupable": true,
730
+ "inlineHelpText": null,
731
+ "label": "Industry",
732
+ "name": "Industry",
733
+ "nillable": true,
734
+ "picklistValues": [
735
+ {
736
+ "active": true,
737
+ "defaultValue": false,
738
+ "label": "Agriculture",
739
+ "validFor": null,
740
+ "value": "Agriculture"
741
+ },
742
+ {
743
+ "active": true,
744
+ "defaultValue": false,
745
+ "label": "Apparel",
746
+ "validFor": null,
747
+ "value": "Apparel"
748
+ },
749
+ {
750
+ "active": true,
751
+ "defaultValue": false,
752
+ "label": "Banking",
753
+ "validFor": null,
754
+ "value": "Banking"
755
+ },
756
+ {
757
+ "active": true,
758
+ "defaultValue": false,
759
+ "label": "Biotechnology",
760
+ "validFor": null,
761
+ "value": "Biotechnology"
762
+ },
763
+ {
764
+ "active": true,
765
+ "defaultValue": false,
766
+ "label": "Chemicals",
767
+ "validFor": null,
768
+ "value": "Chemicals"
769
+ },
770
+ {
771
+ "active": true,
772
+ "defaultValue": false,
773
+ "label": "Communications",
774
+ "validFor": null,
775
+ "value": "Communications"
776
+ },
777
+ {
778
+ "active": true,
779
+ "defaultValue": false,
780
+ "label": "Construction",
781
+ "validFor": null,
782
+ "value": "Construction"
783
+ },
784
+ {
785
+ "active": true,
786
+ "defaultValue": false,
787
+ "label": "Consulting",
788
+ "validFor": null,
789
+ "value": "Consulting"
790
+ },
791
+ {
792
+ "active": true,
793
+ "defaultValue": false,
794
+ "label": "Education",
795
+ "validFor": null,
796
+ "value": "Education"
797
+ },
798
+ {
799
+ "active": true,
800
+ "defaultValue": false,
801
+ "label": "Electronics",
802
+ "validFor": null,
803
+ "value": "Electronics"
804
+ },
805
+ {
806
+ "active": true,
807
+ "defaultValue": false,
808
+ "label": "Energy",
809
+ "validFor": null,
810
+ "value": "Energy"
811
+ },
812
+ {
813
+ "active": true,
814
+ "defaultValue": false,
815
+ "label": "Engineering",
816
+ "validFor": null,
817
+ "value": "Engineering"
818
+ },
819
+ {
820
+ "active": true,
821
+ "defaultValue": false,
822
+ "label": "Entertainment",
823
+ "validFor": null,
824
+ "value": "Entertainment"
825
+ },
826
+ {
827
+ "active": true,
828
+ "defaultValue": false,
829
+ "label": "Environmental",
830
+ "validFor": null,
831
+ "value": "Environmental"
832
+ },
833
+ {
834
+ "active": true,
835
+ "defaultValue": false,
836
+ "label": "Finance",
837
+ "validFor": null,
838
+ "value": "Finance"
839
+ },
840
+ {
841
+ "active": true,
842
+ "defaultValue": false,
843
+ "label": "Food & Beverage",
844
+ "validFor": null,
845
+ "value": "Food & Beverage"
846
+ },
847
+ {
848
+ "active": true,
849
+ "defaultValue": false,
850
+ "label": "Government",
851
+ "validFor": null,
852
+ "value": "Government"
853
+ },
854
+ {
855
+ "active": true,
856
+ "defaultValue": false,
857
+ "label": "Healthcare",
858
+ "validFor": null,
859
+ "value": "Healthcare"
860
+ },
861
+ {
862
+ "active": true,
863
+ "defaultValue": false,
864
+ "label": "Hospitality",
865
+ "validFor": null,
866
+ "value": "Hospitality"
867
+ },
868
+ {
869
+ "active": true,
870
+ "defaultValue": false,
871
+ "label": "Insurance",
872
+ "validFor": null,
873
+ "value": "Insurance"
874
+ },
875
+ {
876
+ "active": true,
877
+ "defaultValue": false,
878
+ "label": "Machinery",
879
+ "validFor": null,
880
+ "value": "Machinery"
881
+ },
882
+ {
883
+ "active": true,
884
+ "defaultValue": false,
885
+ "label": "Manufacturing",
886
+ "validFor": null,
887
+ "value": "Manufacturing"
888
+ },
889
+ {
890
+ "active": true,
891
+ "defaultValue": false,
892
+ "label": "Media",
893
+ "validFor": null,
894
+ "value": "Media"
895
+ },
896
+ {
897
+ "active": true,
898
+ "defaultValue": false,
899
+ "label": "Not For Profit",
900
+ "validFor": null,
901
+ "value": "Not For Profit"
902
+ },
903
+ {
904
+ "active": true,
905
+ "defaultValue": false,
906
+ "label": "Recreation",
907
+ "validFor": null,
908
+ "value": "Recreation"
909
+ },
910
+ {
911
+ "active": true,
912
+ "defaultValue": false,
913
+ "label": "Retail",
914
+ "validFor": null,
915
+ "value": "Retail"
916
+ },
917
+ {
918
+ "active": true,
919
+ "defaultValue": false,
920
+ "label": "Shipping",
921
+ "validFor": null,
922
+ "value": "Shipping"
923
+ },
924
+ {
925
+ "active": true,
926
+ "defaultValue": false,
927
+ "label": "Technology",
928
+ "validFor": null,
929
+ "value": "Technology"
930
+ },
931
+ {
932
+ "active": true,
933
+ "defaultValue": false,
934
+ "label": "Telecommunications",
935
+ "validFor": null,
936
+ "value": "Telecommunications"
937
+ },
938
+ {
939
+ "active": true,
940
+ "defaultValue": false,
941
+ "label": "Transportation",
942
+ "validFor": null,
943
+ "value": "Transportation"
944
+ },
945
+ {
946
+ "active": true,
947
+ "defaultValue": false,
948
+ "label": "Utilities",
949
+ "validFor": null,
950
+ "value": "Utilities"
951
+ },
952
+ {
953
+ "active": true,
954
+ "defaultValue": false,
955
+ "label": "Other",
956
+ "validFor": null,
957
+ "value": "Other"
958
+ }
959
+ ],
960
+ "referenceTo": [],
961
+ "relationshipName": null,
962
+ "sortable": true,
963
+ "type": "picklist"
964
+ },
965
+ {
966
+ "aggregatable": true,
967
+ "custom": false,
968
+ "defaultValue": null,
969
+ "extraTypeInfo": null,
970
+ "filterable": true,
971
+ "groupable": false,
972
+ "inlineHelpText": null,
973
+ "label": "Annual Revenue",
974
+ "name": "AnnualRevenue",
975
+ "nillable": true,
976
+ "picklistValues": [],
977
+ "referenceTo": [],
978
+ "relationshipName": null,
979
+ "sortable": true,
980
+ "type": "currency"
981
+ },
982
+ {
983
+ "aggregatable": true,
984
+ "custom": false,
985
+ "defaultValue": null,
986
+ "extraTypeInfo": null,
987
+ "filterable": true,
988
+ "groupable": true,
989
+ "inlineHelpText": null,
990
+ "label": "Employees",
991
+ "name": "NumberOfEmployees",
992
+ "nillable": true,
993
+ "picklistValues": [],
994
+ "referenceTo": [],
995
+ "relationshipName": null,
996
+ "sortable": true,
997
+ "type": "int"
998
+ },
999
+ {
1000
+ "aggregatable": true,
1001
+ "custom": false,
1002
+ "defaultValue": null,
1003
+ "extraTypeInfo": null,
1004
+ "filterable": true,
1005
+ "groupable": true,
1006
+ "inlineHelpText": null,
1007
+ "label": "Ownership",
1008
+ "name": "Ownership",
1009
+ "nillable": true,
1010
+ "picklistValues": [
1011
+ {
1012
+ "active": true,
1013
+ "defaultValue": false,
1014
+ "label": "Public",
1015
+ "validFor": null,
1016
+ "value": "Public"
1017
+ },
1018
+ {
1019
+ "active": true,
1020
+ "defaultValue": false,
1021
+ "label": "Private",
1022
+ "validFor": null,
1023
+ "value": "Private"
1024
+ },
1025
+ {
1026
+ "active": true,
1027
+ "defaultValue": false,
1028
+ "label": "Subsidiary",
1029
+ "validFor": null,
1030
+ "value": "Subsidiary"
1031
+ },
1032
+ {
1033
+ "active": true,
1034
+ "defaultValue": false,
1035
+ "label": "Other",
1036
+ "validFor": null,
1037
+ "value": "Other"
1038
+ }
1039
+ ],
1040
+ "referenceTo": [],
1041
+ "relationshipName": null,
1042
+ "sortable": true,
1043
+ "type": "picklist"
1044
+ },
1045
+ {
1046
+ "aggregatable": true,
1047
+ "custom": false,
1048
+ "defaultValue": null,
1049
+ "extraTypeInfo": null,
1050
+ "filterable": true,
1051
+ "groupable": true,
1052
+ "inlineHelpText": null,
1053
+ "label": "Ticker Symbol",
1054
+ "name": "TickerSymbol",
1055
+ "nillable": true,
1056
+ "picklistValues": [],
1057
+ "referenceTo": [],
1058
+ "relationshipName": null,
1059
+ "sortable": true,
1060
+ "type": "string"
1061
+ },
1062
+ {
1063
+ "aggregatable": false,
1064
+ "custom": false,
1065
+ "defaultValue": null,
1066
+ "extraTypeInfo": "plaintextarea",
1067
+ "filterable": false,
1068
+ "groupable": false,
1069
+ "inlineHelpText": null,
1070
+ "label": "Account Description",
1071
+ "name": "Description",
1072
+ "nillable": true,
1073
+ "picklistValues": [],
1074
+ "referenceTo": [],
1075
+ "relationshipName": null,
1076
+ "sortable": false,
1077
+ "type": "textarea"
1078
+ },
1079
+ {
1080
+ "aggregatable": true,
1081
+ "custom": false,
1082
+ "defaultValue": null,
1083
+ "extraTypeInfo": null,
1084
+ "filterable": true,
1085
+ "groupable": true,
1086
+ "inlineHelpText": null,
1087
+ "label": "Account Rating",
1088
+ "name": "Rating",
1089
+ "nillable": true,
1090
+ "picklistValues": [
1091
+ {
1092
+ "active": true,
1093
+ "defaultValue": false,
1094
+ "label": "Hot",
1095
+ "validFor": null,
1096
+ "value": "Hot"
1097
+ },
1098
+ {
1099
+ "active": true,
1100
+ "defaultValue": false,
1101
+ "label": "Warm",
1102
+ "validFor": null,
1103
+ "value": "Warm"
1104
+ },
1105
+ {
1106
+ "active": true,
1107
+ "defaultValue": false,
1108
+ "label": "Cold",
1109
+ "validFor": null,
1110
+ "value": "Cold"
1111
+ }
1112
+ ],
1113
+ "referenceTo": [],
1114
+ "relationshipName": null,
1115
+ "sortable": true,
1116
+ "type": "picklist"
1117
+ },
1118
+ {
1119
+ "aggregatable": true,
1120
+ "custom": false,
1121
+ "defaultValue": null,
1122
+ "extraTypeInfo": null,
1123
+ "filterable": true,
1124
+ "groupable": true,
1125
+ "inlineHelpText": null,
1126
+ "label": "Account Site",
1127
+ "name": "Site",
1128
+ "nillable": true,
1129
+ "picklistValues": [],
1130
+ "referenceTo": [],
1131
+ "relationshipName": null,
1132
+ "sortable": true,
1133
+ "type": "string"
1134
+ },
1135
+ {
1136
+ "aggregatable": true,
1137
+ "custom": false,
1138
+ "defaultValue": null,
1139
+ "extraTypeInfo": null,
1140
+ "filterable": true,
1141
+ "groupable": true,
1142
+ "inlineHelpText": null,
1143
+ "label": "Owner ID",
1144
+ "name": "OwnerId",
1145
+ "nillable": false,
1146
+ "picklistValues": [],
1147
+ "referenceTo": [
1148
+ "User"
1149
+ ],
1150
+ "relationshipName": "Owner",
1151
+ "sortable": true,
1152
+ "type": "reference"
1153
+ },
1154
+ {
1155
+ "aggregatable": true,
1156
+ "custom": false,
1157
+ "defaultValue": null,
1158
+ "extraTypeInfo": null,
1159
+ "filterable": true,
1160
+ "groupable": false,
1161
+ "inlineHelpText": null,
1162
+ "label": "Created Date",
1163
+ "name": "CreatedDate",
1164
+ "nillable": false,
1165
+ "picklistValues": [],
1166
+ "referenceTo": [],
1167
+ "relationshipName": null,
1168
+ "sortable": true,
1169
+ "type": "datetime"
1170
+ },
1171
+ {
1172
+ "aggregatable": true,
1173
+ "custom": false,
1174
+ "defaultValue": null,
1175
+ "extraTypeInfo": null,
1176
+ "filterable": true,
1177
+ "groupable": true,
1178
+ "inlineHelpText": null,
1179
+ "label": "Created By ID",
1180
+ "name": "CreatedById",
1181
+ "nillable": false,
1182
+ "picklistValues": [],
1183
+ "referenceTo": [
1184
+ "User"
1185
+ ],
1186
+ "relationshipName": "CreatedBy",
1187
+ "sortable": true,
1188
+ "type": "reference"
1189
+ },
1190
+ {
1191
+ "aggregatable": true,
1192
+ "custom": false,
1193
+ "defaultValue": null,
1194
+ "extraTypeInfo": null,
1195
+ "filterable": true,
1196
+ "groupable": false,
1197
+ "inlineHelpText": null,
1198
+ "label": "Last Modified Date",
1199
+ "name": "LastModifiedDate",
1200
+ "nillable": false,
1201
+ "picklistValues": [],
1202
+ "referenceTo": [],
1203
+ "relationshipName": null,
1204
+ "sortable": true,
1205
+ "type": "datetime"
1206
+ },
1207
+ {
1208
+ "aggregatable": true,
1209
+ "custom": false,
1210
+ "defaultValue": null,
1211
+ "extraTypeInfo": null,
1212
+ "filterable": true,
1213
+ "groupable": true,
1214
+ "inlineHelpText": null,
1215
+ "label": "Last Modified By ID",
1216
+ "name": "LastModifiedById",
1217
+ "nillable": false,
1218
+ "picklistValues": [],
1219
+ "referenceTo": [
1220
+ "User"
1221
+ ],
1222
+ "relationshipName": "LastModifiedBy",
1223
+ "sortable": true,
1224
+ "type": "reference"
1225
+ },
1226
+ {
1227
+ "aggregatable": true,
1228
+ "custom": false,
1229
+ "defaultValue": null,
1230
+ "extraTypeInfo": null,
1231
+ "filterable": true,
1232
+ "groupable": false,
1233
+ "inlineHelpText": null,
1234
+ "label": "System Modstamp",
1235
+ "name": "SystemModstamp",
1236
+ "nillable": false,
1237
+ "picklistValues": [],
1238
+ "referenceTo": [],
1239
+ "relationshipName": null,
1240
+ "sortable": true,
1241
+ "type": "datetime"
1242
+ },
1243
+ {
1244
+ "aggregatable": true,
1245
+ "custom": false,
1246
+ "defaultValue": null,
1247
+ "extraTypeInfo": null,
1248
+ "filterable": true,
1249
+ "groupable": true,
1250
+ "inlineHelpText": null,
1251
+ "label": "Last Activity",
1252
+ "name": "LastActivityDate",
1253
+ "nillable": true,
1254
+ "picklistValues": [],
1255
+ "referenceTo": [],
1256
+ "relationshipName": null,
1257
+ "sortable": true,
1258
+ "type": "date"
1259
+ },
1260
+ {
1261
+ "aggregatable": true,
1262
+ "custom": false,
1263
+ "defaultValue": null,
1264
+ "extraTypeInfo": null,
1265
+ "filterable": true,
1266
+ "groupable": false,
1267
+ "inlineHelpText": null,
1268
+ "label": "Last Viewed Date",
1269
+ "name": "LastViewedDate",
1270
+ "nillable": true,
1271
+ "picklistValues": [],
1272
+ "referenceTo": [],
1273
+ "relationshipName": null,
1274
+ "sortable": true,
1275
+ "type": "datetime"
1276
+ },
1277
+ {
1278
+ "aggregatable": true,
1279
+ "custom": false,
1280
+ "defaultValue": null,
1281
+ "extraTypeInfo": null,
1282
+ "filterable": true,
1283
+ "groupable": false,
1284
+ "inlineHelpText": null,
1285
+ "label": "Last Referenced Date",
1286
+ "name": "LastReferencedDate",
1287
+ "nillable": true,
1288
+ "picklistValues": [],
1289
+ "referenceTo": [],
1290
+ "relationshipName": null,
1291
+ "sortable": true,
1292
+ "type": "datetime"
1293
+ },
1294
+ {
1295
+ "aggregatable": true,
1296
+ "custom": false,
1297
+ "defaultValue": null,
1298
+ "extraTypeInfo": null,
1299
+ "filterable": true,
1300
+ "groupable": true,
1301
+ "inlineHelpText": null,
1302
+ "label": "Data.com Key",
1303
+ "name": "Jigsaw",
1304
+ "nillable": true,
1305
+ "picklistValues": [],
1306
+ "referenceTo": [],
1307
+ "relationshipName": null,
1308
+ "sortable": true,
1309
+ "type": "string"
1310
+ },
1311
+ {
1312
+ "aggregatable": true,
1313
+ "custom": false,
1314
+ "defaultValue": null,
1315
+ "extraTypeInfo": null,
1316
+ "filterable": true,
1317
+ "groupable": true,
1318
+ "inlineHelpText": null,
1319
+ "label": "Jigsaw Company ID",
1320
+ "name": "JigsawCompanyId",
1321
+ "nillable": true,
1322
+ "picklistValues": [],
1323
+ "referenceTo": [],
1324
+ "relationshipName": "JigsawCompany",
1325
+ "sortable": true,
1326
+ "type": "string"
1327
+ },
1328
+ {
1329
+ "aggregatable": true,
1330
+ "custom": false,
1331
+ "defaultValue": null,
1332
+ "extraTypeInfo": null,
1333
+ "filterable": true,
1334
+ "groupable": true,
1335
+ "inlineHelpText": null,
1336
+ "label": "Clean Status",
1337
+ "name": "CleanStatus",
1338
+ "nillable": true,
1339
+ "picklistValues": [
1340
+ {
1341
+ "active": true,
1342
+ "defaultValue": false,
1343
+ "label": "In Sync",
1344
+ "validFor": null,
1345
+ "value": "Matched"
1346
+ },
1347
+ {
1348
+ "active": true,
1349
+ "defaultValue": false,
1350
+ "label": "Different",
1351
+ "validFor": null,
1352
+ "value": "Different"
1353
+ },
1354
+ {
1355
+ "active": true,
1356
+ "defaultValue": false,
1357
+ "label": "Reviewed",
1358
+ "validFor": null,
1359
+ "value": "Acknowledged"
1360
+ },
1361
+ {
1362
+ "active": true,
1363
+ "defaultValue": false,
1364
+ "label": "Not Found",
1365
+ "validFor": null,
1366
+ "value": "NotFound"
1367
+ },
1368
+ {
1369
+ "active": true,
1370
+ "defaultValue": false,
1371
+ "label": "Inactive",
1372
+ "validFor": null,
1373
+ "value": "Inactive"
1374
+ },
1375
+ {
1376
+ "active": true,
1377
+ "defaultValue": false,
1378
+ "label": "Not Compared",
1379
+ "validFor": null,
1380
+ "value": "Pending"
1381
+ },
1382
+ {
1383
+ "active": true,
1384
+ "defaultValue": false,
1385
+ "label": "Select Match",
1386
+ "validFor": null,
1387
+ "value": "SelectMatch"
1388
+ },
1389
+ {
1390
+ "active": true,
1391
+ "defaultValue": false,
1392
+ "label": "Skipped",
1393
+ "validFor": null,
1394
+ "value": "Skipped"
1395
+ }
1396
+ ],
1397
+ "referenceTo": [],
1398
+ "relationshipName": null,
1399
+ "sortable": true,
1400
+ "type": "picklist"
1401
+ },
1402
+ {
1403
+ "aggregatable": true,
1404
+ "custom": false,
1405
+ "defaultValue": null,
1406
+ "extraTypeInfo": null,
1407
+ "filterable": true,
1408
+ "groupable": true,
1409
+ "inlineHelpText": null,
1410
+ "label": "Account Source",
1411
+ "name": "AccountSource",
1412
+ "nillable": true,
1413
+ "picklistValues": [
1414
+ {
1415
+ "active": true,
1416
+ "defaultValue": false,
1417
+ "label": "Web",
1418
+ "validFor": null,
1419
+ "value": "Web"
1420
+ },
1421
+ {
1422
+ "active": true,
1423
+ "defaultValue": false,
1424
+ "label": "Phone Inquiry",
1425
+ "validFor": null,
1426
+ "value": "Phone Inquiry"
1427
+ },
1428
+ {
1429
+ "active": true,
1430
+ "defaultValue": false,
1431
+ "label": "Partner Referral",
1432
+ "validFor": null,
1433
+ "value": "Partner Referral"
1434
+ },
1435
+ {
1436
+ "active": true,
1437
+ "defaultValue": false,
1438
+ "label": "Purchased List",
1439
+ "validFor": null,
1440
+ "value": "Purchased List"
1441
+ },
1442
+ {
1443
+ "active": true,
1444
+ "defaultValue": false,
1445
+ "label": "Other",
1446
+ "validFor": null,
1447
+ "value": "Other"
1448
+ }
1449
+ ],
1450
+ "referenceTo": [],
1451
+ "relationshipName": null,
1452
+ "sortable": true,
1453
+ "type": "picklist"
1454
+ },
1455
+ {
1456
+ "aggregatable": true,
1457
+ "custom": false,
1458
+ "defaultValue": null,
1459
+ "extraTypeInfo": null,
1460
+ "filterable": true,
1461
+ "groupable": true,
1462
+ "inlineHelpText": null,
1463
+ "label": "D-U-N-S Number",
1464
+ "name": "DunsNumber",
1465
+ "nillable": true,
1466
+ "picklistValues": [],
1467
+ "referenceTo": [],
1468
+ "relationshipName": null,
1469
+ "sortable": true,
1470
+ "type": "string"
1471
+ },
1472
+ {
1473
+ "aggregatable": true,
1474
+ "custom": false,
1475
+ "defaultValue": null,
1476
+ "extraTypeInfo": null,
1477
+ "filterable": true,
1478
+ "groupable": true,
1479
+ "inlineHelpText": null,
1480
+ "label": "Tradestyle",
1481
+ "name": "Tradestyle",
1482
+ "nillable": true,
1483
+ "picklistValues": [],
1484
+ "referenceTo": [],
1485
+ "relationshipName": null,
1486
+ "sortable": true,
1487
+ "type": "string"
1488
+ },
1489
+ {
1490
+ "aggregatable": true,
1491
+ "custom": false,
1492
+ "defaultValue": null,
1493
+ "extraTypeInfo": null,
1494
+ "filterable": true,
1495
+ "groupable": true,
1496
+ "inlineHelpText": null,
1497
+ "label": "NAICS Code",
1498
+ "name": "NaicsCode",
1499
+ "nillable": true,
1500
+ "picklistValues": [],
1501
+ "referenceTo": [],
1502
+ "relationshipName": null,
1503
+ "sortable": true,
1504
+ "type": "string"
1505
+ },
1506
+ {
1507
+ "aggregatable": true,
1508
+ "custom": false,
1509
+ "defaultValue": null,
1510
+ "extraTypeInfo": null,
1511
+ "filterable": true,
1512
+ "groupable": true,
1513
+ "inlineHelpText": null,
1514
+ "label": "NAICS Description",
1515
+ "name": "NaicsDesc",
1516
+ "nillable": true,
1517
+ "picklistValues": [],
1518
+ "referenceTo": [],
1519
+ "relationshipName": null,
1520
+ "sortable": true,
1521
+ "type": "string"
1522
+ },
1523
+ {
1524
+ "aggregatable": true,
1525
+ "custom": false,
1526
+ "defaultValue": null,
1527
+ "extraTypeInfo": null,
1528
+ "filterable": true,
1529
+ "groupable": true,
1530
+ "inlineHelpText": null,
1531
+ "label": "Year Started",
1532
+ "name": "YearStarted",
1533
+ "nillable": true,
1534
+ "picklistValues": [],
1535
+ "referenceTo": [],
1536
+ "relationshipName": null,
1537
+ "sortable": true,
1538
+ "type": "string"
1539
+ },
1540
+ {
1541
+ "aggregatable": true,
1542
+ "custom": false,
1543
+ "defaultValue": null,
1544
+ "extraTypeInfo": null,
1545
+ "filterable": true,
1546
+ "groupable": true,
1547
+ "inlineHelpText": null,
1548
+ "label": "SIC Description",
1549
+ "name": "SicDesc",
1550
+ "nillable": true,
1551
+ "picklistValues": [],
1552
+ "referenceTo": [],
1553
+ "relationshipName": null,
1554
+ "sortable": true,
1555
+ "type": "string"
1556
+ },
1557
+ {
1558
+ "aggregatable": true,
1559
+ "custom": false,
1560
+ "defaultValue": null,
1561
+ "extraTypeInfo": null,
1562
+ "filterable": true,
1563
+ "groupable": true,
1564
+ "inlineHelpText": null,
1565
+ "label": "D&B Company ID",
1566
+ "name": "DandbCompanyId",
1567
+ "nillable": true,
1568
+ "picklistValues": [],
1569
+ "referenceTo": [
1570
+ "DandBCompany"
1571
+ ],
1572
+ "relationshipName": "DandbCompany",
1573
+ "sortable": true,
1574
+ "type": "reference"
1575
+ },
1576
+ {
1577
+ "aggregatable": true,
1578
+ "custom": false,
1579
+ "defaultValue": null,
1580
+ "extraTypeInfo": null,
1581
+ "filterable": true,
1582
+ "groupable": true,
1583
+ "inlineHelpText": null,
1584
+ "label": "Operating Hour ID",
1585
+ "name": "OperatingHoursId",
1586
+ "nillable": true,
1587
+ "picklistValues": [],
1588
+ "referenceTo": [
1589
+ "OperatingHours"
1590
+ ],
1591
+ "relationshipName": "OperatingHours",
1592
+ "sortable": true,
1593
+ "type": "reference"
1594
+ }
1595
+ ],
1596
+ "label": "Account",
1597
+ "childRelationships": [
1598
+ {
1599
+ "cascadeDelete": true,
1600
+ "childSObject": "AIInsightValue",
1601
+ "deprecatedAndHidden": false,
1602
+ "field": "SobjectLookupValueId",
1603
+ "junctionIdListNames": [],
1604
+ "junctionReferenceTo": [],
1605
+ "relationshipName": null,
1606
+ "restrictedDelete": false
1607
+ },
1608
+ {
1609
+ "cascadeDelete": true,
1610
+ "childSObject": "AIRecordInsight",
1611
+ "deprecatedAndHidden": false,
1612
+ "field": "TargetId",
1613
+ "junctionIdListNames": [],
1614
+ "junctionReferenceTo": [],
1615
+ "relationshipName": null,
1616
+ "restrictedDelete": false
1617
+ },
1618
+ {
1619
+ "cascadeDelete": false,
1620
+ "childSObject": "Account",
1621
+ "deprecatedAndHidden": false,
1622
+ "field": "ParentId",
1623
+ "junctionIdListNames": [],
1624
+ "junctionReferenceTo": [],
1625
+ "relationshipName": "ChildAccounts",
1626
+ "restrictedDelete": false
1627
+ },
1628
+ {
1629
+ "cascadeDelete": false,
1630
+ "childSObject": "AccountChangeEvent",
1631
+ "deprecatedAndHidden": false,
1632
+ "field": "ParentId",
1633
+ "junctionIdListNames": [],
1634
+ "junctionReferenceTo": [],
1635
+ "relationshipName": null,
1636
+ "restrictedDelete": false
1637
+ },
1638
+ {
1639
+ "cascadeDelete": true,
1640
+ "childSObject": "AccountCleanInfo",
1641
+ "deprecatedAndHidden": false,
1642
+ "field": "AccountId",
1643
+ "junctionIdListNames": [],
1644
+ "junctionReferenceTo": [],
1645
+ "relationshipName": "AccountCleanInfos",
1646
+ "restrictedDelete": false
1647
+ },
1648
+ {
1649
+ "cascadeDelete": true,
1650
+ "childSObject": "AccountContactRole",
1651
+ "deprecatedAndHidden": false,
1652
+ "field": "AccountId",
1653
+ "junctionIdListNames": [],
1654
+ "junctionReferenceTo": [],
1655
+ "relationshipName": "AccountContactRoles",
1656
+ "restrictedDelete": false
1657
+ },
1658
+ {
1659
+ "cascadeDelete": false,
1660
+ "childSObject": "AccountContactRoleChangeEvent",
1661
+ "deprecatedAndHidden": false,
1662
+ "field": "AccountId",
1663
+ "junctionIdListNames": [],
1664
+ "junctionReferenceTo": [],
1665
+ "relationshipName": null,
1666
+ "restrictedDelete": false
1667
+ },
1668
+ {
1669
+ "cascadeDelete": true,
1670
+ "childSObject": "AccountFeed",
1671
+ "deprecatedAndHidden": false,
1672
+ "field": "ParentId",
1673
+ "junctionIdListNames": [],
1674
+ "junctionReferenceTo": [],
1675
+ "relationshipName": "Feeds",
1676
+ "restrictedDelete": false
1677
+ },
1678
+ {
1679
+ "cascadeDelete": true,
1680
+ "childSObject": "AccountHistory",
1681
+ "deprecatedAndHidden": false,
1682
+ "field": "AccountId",
1683
+ "junctionIdListNames": [],
1684
+ "junctionReferenceTo": [],
1685
+ "relationshipName": "Histories",
1686
+ "restrictedDelete": false
1687
+ },
1688
+ {
1689
+ "cascadeDelete": true,
1690
+ "childSObject": "AccountPartner",
1691
+ "deprecatedAndHidden": false,
1692
+ "field": "AccountFromId",
1693
+ "junctionIdListNames": [],
1694
+ "junctionReferenceTo": [],
1695
+ "relationshipName": "AccountPartnersFrom",
1696
+ "restrictedDelete": false
1697
+ },
1698
+ {
1699
+ "cascadeDelete": true,
1700
+ "childSObject": "AccountPartner",
1701
+ "deprecatedAndHidden": false,
1702
+ "field": "AccountToId",
1703
+ "junctionIdListNames": [],
1704
+ "junctionReferenceTo": [],
1705
+ "relationshipName": "AccountPartnersTo",
1706
+ "restrictedDelete": false
1707
+ },
1708
+ {
1709
+ "cascadeDelete": true,
1710
+ "childSObject": "AccountShare",
1711
+ "deprecatedAndHidden": false,
1712
+ "field": "AccountId",
1713
+ "junctionIdListNames": [],
1714
+ "junctionReferenceTo": [],
1715
+ "relationshipName": "Shares",
1716
+ "restrictedDelete": false
1717
+ },
1718
+ {
1719
+ "cascadeDelete": true,
1720
+ "childSObject": "ActivityHistory",
1721
+ "deprecatedAndHidden": false,
1722
+ "field": "AccountId",
1723
+ "junctionIdListNames": [],
1724
+ "junctionReferenceTo": [],
1725
+ "relationshipName": "ActivityHistories",
1726
+ "restrictedDelete": false
1727
+ },
1728
+ {
1729
+ "cascadeDelete": false,
1730
+ "childSObject": "AlternativePaymentMethod",
1731
+ "deprecatedAndHidden": false,
1732
+ "field": "AccountId",
1733
+ "junctionIdListNames": [],
1734
+ "junctionReferenceTo": [],
1735
+ "relationshipName": "AlternativePaymentMethods",
1736
+ "restrictedDelete": false
1737
+ },
1738
+ {
1739
+ "cascadeDelete": true,
1740
+ "childSObject": "Asset",
1741
+ "deprecatedAndHidden": false,
1742
+ "field": "AccountId",
1743
+ "junctionIdListNames": [],
1744
+ "junctionReferenceTo": [],
1745
+ "relationshipName": "Assets",
1746
+ "restrictedDelete": false
1747
+ },
1748
+ {
1749
+ "cascadeDelete": false,
1750
+ "childSObject": "Asset",
1751
+ "deprecatedAndHidden": false,
1752
+ "field": "AssetProvidedById",
1753
+ "junctionIdListNames": [],
1754
+ "junctionReferenceTo": [],
1755
+ "relationshipName": "ProvidedAssets",
1756
+ "restrictedDelete": false
1757
+ },
1758
+ {
1759
+ "cascadeDelete": false,
1760
+ "childSObject": "Asset",
1761
+ "deprecatedAndHidden": false,
1762
+ "field": "AssetServicedById",
1763
+ "junctionIdListNames": [],
1764
+ "junctionReferenceTo": [],
1765
+ "relationshipName": "ServicedAssets",
1766
+ "restrictedDelete": false
1767
+ },
1768
+ {
1769
+ "cascadeDelete": false,
1770
+ "childSObject": "AssetChangeEvent",
1771
+ "deprecatedAndHidden": false,
1772
+ "field": "AccountId",
1773
+ "junctionIdListNames": [],
1774
+ "junctionReferenceTo": [],
1775
+ "relationshipName": null,
1776
+ "restrictedDelete": false
1777
+ },
1778
+ {
1779
+ "cascadeDelete": false,
1780
+ "childSObject": "AssetChangeEvent",
1781
+ "deprecatedAndHidden": false,
1782
+ "field": "AssetProvidedById",
1783
+ "junctionIdListNames": [],
1784
+ "junctionReferenceTo": [],
1785
+ "relationshipName": null,
1786
+ "restrictedDelete": false
1787
+ },
1788
+ {
1789
+ "cascadeDelete": false,
1790
+ "childSObject": "AssetChangeEvent",
1791
+ "deprecatedAndHidden": false,
1792
+ "field": "AssetServicedById",
1793
+ "junctionIdListNames": [],
1794
+ "junctionReferenceTo": [],
1795
+ "relationshipName": null,
1796
+ "restrictedDelete": false
1797
+ },
1798
+ {
1799
+ "cascadeDelete": true,
1800
+ "childSObject": "AssociatedLocation",
1801
+ "deprecatedAndHidden": false,
1802
+ "field": "ParentRecordId",
1803
+ "junctionIdListNames": [],
1804
+ "junctionReferenceTo": [],
1805
+ "relationshipName": "AssociatedLocations",
1806
+ "restrictedDelete": false
1807
+ },
1808
+ {
1809
+ "cascadeDelete": true,
1810
+ "childSObject": "AttachedContentDocument",
1811
+ "deprecatedAndHidden": false,
1812
+ "field": "LinkedEntityId",
1813
+ "junctionIdListNames": [],
1814
+ "junctionReferenceTo": [],
1815
+ "relationshipName": "AttachedContentDocuments",
1816
+ "restrictedDelete": false
1817
+ },
1818
+ {
1819
+ "cascadeDelete": true,
1820
+ "childSObject": "Attachment",
1821
+ "deprecatedAndHidden": false,
1822
+ "field": "ParentId",
1823
+ "junctionIdListNames": [],
1824
+ "junctionReferenceTo": [],
1825
+ "relationshipName": "Attachments",
1826
+ "restrictedDelete": false
1827
+ },
1828
+ {
1829
+ "cascadeDelete": false,
1830
+ "childSObject": "AuthorizationFormConsent",
1831
+ "deprecatedAndHidden": false,
1832
+ "field": "ConsentGiverId",
1833
+ "junctionIdListNames": [],
1834
+ "junctionReferenceTo": [],
1835
+ "relationshipName": "AuthorizationFormConsents",
1836
+ "restrictedDelete": true
1837
+ },
1838
+ {
1839
+ "cascadeDelete": false,
1840
+ "childSObject": "AuthorizationFormConsent",
1841
+ "deprecatedAndHidden": false,
1842
+ "field": "RelatedRecordId",
1843
+ "junctionIdListNames": [],
1844
+ "junctionReferenceTo": [],
1845
+ "relationshipName": "RelatedAuthorizationFormConsents",
1846
+ "restrictedDelete": false
1847
+ },
1848
+ {
1849
+ "cascadeDelete": false,
1850
+ "childSObject": "AuthorizationFormConsentChangeEvent",
1851
+ "deprecatedAndHidden": false,
1852
+ "field": "ConsentGiverId",
1853
+ "junctionIdListNames": [],
1854
+ "junctionReferenceTo": [],
1855
+ "relationshipName": null,
1856
+ "restrictedDelete": false
1857
+ },
1858
+ {
1859
+ "cascadeDelete": false,
1860
+ "childSObject": "AuthorizationFormConsentChangeEvent",
1861
+ "deprecatedAndHidden": false,
1862
+ "field": "RelatedRecordId",
1863
+ "junctionIdListNames": [],
1864
+ "junctionReferenceTo": [],
1865
+ "relationshipName": null,
1866
+ "restrictedDelete": false
1867
+ },
1868
+ {
1869
+ "cascadeDelete": false,
1870
+ "childSObject": "CampaignMember",
1871
+ "deprecatedAndHidden": false,
1872
+ "field": "LeadOrContactId",
1873
+ "junctionIdListNames": [],
1874
+ "junctionReferenceTo": [],
1875
+ "relationshipName": null,
1876
+ "restrictedDelete": false
1877
+ },
1878
+ {
1879
+ "cascadeDelete": false,
1880
+ "childSObject": "CardPaymentMethod",
1881
+ "deprecatedAndHidden": false,
1882
+ "field": "AccountId",
1883
+ "junctionIdListNames": [],
1884
+ "junctionReferenceTo": [],
1885
+ "relationshipName": "CardPaymentMethods",
1886
+ "restrictedDelete": false
1887
+ },
1888
+ {
1889
+ "cascadeDelete": false,
1890
+ "childSObject": "Case",
1891
+ "deprecatedAndHidden": false,
1892
+ "field": "AccountId",
1893
+ "junctionIdListNames": [],
1894
+ "junctionReferenceTo": [],
1895
+ "relationshipName": "Cases",
1896
+ "restrictedDelete": true
1897
+ },
1898
+ {
1899
+ "cascadeDelete": false,
1900
+ "childSObject": "CaseChangeEvent",
1901
+ "deprecatedAndHidden": false,
1902
+ "field": "AccountId",
1903
+ "junctionIdListNames": [],
1904
+ "junctionReferenceTo": [],
1905
+ "relationshipName": null,
1906
+ "restrictedDelete": false
1907
+ },
1908
+ {
1909
+ "cascadeDelete": true,
1910
+ "childSObject": "CollaborationGroupRecord",
1911
+ "deprecatedAndHidden": false,
1912
+ "field": "RecordId",
1913
+ "junctionIdListNames": [],
1914
+ "junctionReferenceTo": [],
1915
+ "relationshipName": "RecordAssociatedGroups",
1916
+ "restrictedDelete": false
1917
+ },
1918
+ {
1919
+ "cascadeDelete": true,
1920
+ "childSObject": "CombinedAttachment",
1921
+ "deprecatedAndHidden": false,
1922
+ "field": "ParentId",
1923
+ "junctionIdListNames": [],
1924
+ "junctionReferenceTo": [],
1925
+ "relationshipName": "CombinedAttachments",
1926
+ "restrictedDelete": false
1927
+ },
1928
+ {
1929
+ "cascadeDelete": false,
1930
+ "childSObject": "CommSubscriptionConsent",
1931
+ "deprecatedAndHidden": false,
1932
+ "field": "ConsentGiverId",
1933
+ "junctionIdListNames": [],
1934
+ "junctionReferenceTo": [],
1935
+ "relationshipName": "CommSubscriptionConsents",
1936
+ "restrictedDelete": true
1937
+ },
1938
+ {
1939
+ "cascadeDelete": false,
1940
+ "childSObject": "CommSubscriptionConsentChangeEvent",
1941
+ "deprecatedAndHidden": false,
1942
+ "field": "ConsentGiverId",
1943
+ "junctionIdListNames": [],
1944
+ "junctionReferenceTo": [],
1945
+ "relationshipName": null,
1946
+ "restrictedDelete": false
1947
+ },
1948
+ {
1949
+ "cascadeDelete": true,
1950
+ "childSObject": "Contact",
1951
+ "deprecatedAndHidden": false,
1952
+ "field": "AccountId",
1953
+ "junctionIdListNames": [],
1954
+ "junctionReferenceTo": [],
1955
+ "relationshipName": "Contacts",
1956
+ "restrictedDelete": false
1957
+ },
1958
+ {
1959
+ "cascadeDelete": false,
1960
+ "childSObject": "ContactChangeEvent",
1961
+ "deprecatedAndHidden": false,
1962
+ "field": "AccountId",
1963
+ "junctionIdListNames": [],
1964
+ "junctionReferenceTo": [],
1965
+ "relationshipName": null,
1966
+ "restrictedDelete": false
1967
+ },
1968
+ {
1969
+ "cascadeDelete": true,
1970
+ "childSObject": "ContactPointAddress",
1971
+ "deprecatedAndHidden": false,
1972
+ "field": "ParentId",
1973
+ "junctionIdListNames": [],
1974
+ "junctionReferenceTo": [],
1975
+ "relationshipName": "ContactPointAddresses",
1976
+ "restrictedDelete": false
1977
+ },
1978
+ {
1979
+ "cascadeDelete": false,
1980
+ "childSObject": "ContactPointAddressChangeEvent",
1981
+ "deprecatedAndHidden": false,
1982
+ "field": "ParentId",
1983
+ "junctionIdListNames": [],
1984
+ "junctionReferenceTo": [],
1985
+ "relationshipName": null,
1986
+ "restrictedDelete": false
1987
+ },
1988
+ {
1989
+ "cascadeDelete": true,
1990
+ "childSObject": "ContactPointEmail",
1991
+ "deprecatedAndHidden": false,
1992
+ "field": "ParentId",
1993
+ "junctionIdListNames": [],
1994
+ "junctionReferenceTo": [],
1995
+ "relationshipName": "ContactPointEmails",
1996
+ "restrictedDelete": false
1997
+ },
1998
+ {
1999
+ "cascadeDelete": false,
2000
+ "childSObject": "ContactPointEmailChangeEvent",
2001
+ "deprecatedAndHidden": false,
2002
+ "field": "ParentId",
2003
+ "junctionIdListNames": [],
2004
+ "junctionReferenceTo": [],
2005
+ "relationshipName": null,
2006
+ "restrictedDelete": false
2007
+ },
2008
+ {
2009
+ "cascadeDelete": true,
2010
+ "childSObject": "ContactPointPhone",
2011
+ "deprecatedAndHidden": false,
2012
+ "field": "ParentId",
2013
+ "junctionIdListNames": [],
2014
+ "junctionReferenceTo": [],
2015
+ "relationshipName": "ContactPointPhones",
2016
+ "restrictedDelete": false
2017
+ },
2018
+ {
2019
+ "cascadeDelete": false,
2020
+ "childSObject": "ContactPointPhoneChangeEvent",
2021
+ "deprecatedAndHidden": false,
2022
+ "field": "ParentId",
2023
+ "junctionIdListNames": [],
2024
+ "junctionReferenceTo": [],
2025
+ "relationshipName": null,
2026
+ "restrictedDelete": false
2027
+ },
2028
+ {
2029
+ "cascadeDelete": false,
2030
+ "childSObject": "ContactRequest",
2031
+ "deprecatedAndHidden": false,
2032
+ "field": "WhatId",
2033
+ "junctionIdListNames": [],
2034
+ "junctionReferenceTo": [],
2035
+ "relationshipName": "ContactRequests",
2036
+ "restrictedDelete": false
2037
+ },
2038
+ {
2039
+ "cascadeDelete": true,
2040
+ "childSObject": "ContentDistribution",
2041
+ "deprecatedAndHidden": false,
2042
+ "field": "RelatedRecordId",
2043
+ "junctionIdListNames": [],
2044
+ "junctionReferenceTo": [],
2045
+ "relationshipName": null,
2046
+ "restrictedDelete": false
2047
+ },
2048
+ {
2049
+ "cascadeDelete": true,
2050
+ "childSObject": "ContentDocumentLink",
2051
+ "deprecatedAndHidden": false,
2052
+ "field": "LinkedEntityId",
2053
+ "junctionIdListNames": [],
2054
+ "junctionReferenceTo": [],
2055
+ "relationshipName": "ContentDocumentLinks",
2056
+ "restrictedDelete": false
2057
+ },
2058
+ {
2059
+ "cascadeDelete": false,
2060
+ "childSObject": "ContentDocumentLinkChangeEvent",
2061
+ "deprecatedAndHidden": false,
2062
+ "field": "LinkedEntityId",
2063
+ "junctionIdListNames": [],
2064
+ "junctionReferenceTo": [],
2065
+ "relationshipName": null,
2066
+ "restrictedDelete": false
2067
+ },
2068
+ {
2069
+ "cascadeDelete": false,
2070
+ "childSObject": "ContentVersion",
2071
+ "deprecatedAndHidden": false,
2072
+ "field": "FirstPublishLocationId",
2073
+ "junctionIdListNames": [],
2074
+ "junctionReferenceTo": [],
2075
+ "relationshipName": null,
2076
+ "restrictedDelete": false
2077
+ },
2078
+ {
2079
+ "cascadeDelete": false,
2080
+ "childSObject": "ContentVersionChangeEvent",
2081
+ "deprecatedAndHidden": false,
2082
+ "field": "FirstPublishLocationId",
2083
+ "junctionIdListNames": [],
2084
+ "junctionReferenceTo": [],
2085
+ "relationshipName": null,
2086
+ "restrictedDelete": false
2087
+ },
2088
+ {
2089
+ "cascadeDelete": true,
2090
+ "childSObject": "Contract",
2091
+ "deprecatedAndHidden": false,
2092
+ "field": "AccountId",
2093
+ "junctionIdListNames": [],
2094
+ "junctionReferenceTo": [],
2095
+ "relationshipName": "Contracts",
2096
+ "restrictedDelete": true
2097
+ },
2098
+ {
2099
+ "cascadeDelete": false,
2100
+ "childSObject": "ContractChangeEvent",
2101
+ "deprecatedAndHidden": false,
2102
+ "field": "AccountId",
2103
+ "junctionIdListNames": [],
2104
+ "junctionReferenceTo": [],
2105
+ "relationshipName": null,
2106
+ "restrictedDelete": false
2107
+ },
2108
+ {
2109
+ "cascadeDelete": true,
2110
+ "childSObject": "CreditMemo",
2111
+ "deprecatedAndHidden": false,
2112
+ "field": "BillingAccountId",
2113
+ "junctionIdListNames": [],
2114
+ "junctionReferenceTo": [],
2115
+ "relationshipName": "CreditMemos",
2116
+ "restrictedDelete": false
2117
+ },
2118
+ {
2119
+ "cascadeDelete": false,
2120
+ "childSObject": "DigitalWallet",
2121
+ "deprecatedAndHidden": false,
2122
+ "field": "AccountId",
2123
+ "junctionIdListNames": [],
2124
+ "junctionReferenceTo": [],
2125
+ "relationshipName": "DigitalWallets",
2126
+ "restrictedDelete": false
2127
+ },
2128
+ {
2129
+ "cascadeDelete": true,
2130
+ "childSObject": "DuplicateRecordItem",
2131
+ "deprecatedAndHidden": false,
2132
+ "field": "RecordId",
2133
+ "junctionIdListNames": [],
2134
+ "junctionReferenceTo": [],
2135
+ "relationshipName": "DuplicateRecordItems",
2136
+ "restrictedDelete": false
2137
+ },
2138
+ {
2139
+ "cascadeDelete": false,
2140
+ "childSObject": "EmailMessage",
2141
+ "deprecatedAndHidden": false,
2142
+ "field": "RelatedToId",
2143
+ "junctionIdListNames": [],
2144
+ "junctionReferenceTo": [],
2145
+ "relationshipName": "Emails",
2146
+ "restrictedDelete": false
2147
+ },
2148
+ {
2149
+ "cascadeDelete": false,
2150
+ "childSObject": "EmailMessageChangeEvent",
2151
+ "deprecatedAndHidden": false,
2152
+ "field": "RelatedToId",
2153
+ "junctionIdListNames": [],
2154
+ "junctionReferenceTo": [],
2155
+ "relationshipName": null,
2156
+ "restrictedDelete": false
2157
+ },
2158
+ {
2159
+ "cascadeDelete": true,
2160
+ "childSObject": "Entitlement",
2161
+ "deprecatedAndHidden": false,
2162
+ "field": "AccountId",
2163
+ "junctionIdListNames": [],
2164
+ "junctionReferenceTo": [],
2165
+ "relationshipName": "Entitlements",
2166
+ "restrictedDelete": true
2167
+ },
2168
+ {
2169
+ "cascadeDelete": false,
2170
+ "childSObject": "EntitlementChangeEvent",
2171
+ "deprecatedAndHidden": false,
2172
+ "field": "AccountId",
2173
+ "junctionIdListNames": [],
2174
+ "junctionReferenceTo": [],
2175
+ "relationshipName": null,
2176
+ "restrictedDelete": false
2177
+ },
2178
+ {
2179
+ "cascadeDelete": true,
2180
+ "childSObject": "EntitySubscription",
2181
+ "deprecatedAndHidden": false,
2182
+ "field": "ParentId",
2183
+ "junctionIdListNames": [],
2184
+ "junctionReferenceTo": [],
2185
+ "relationshipName": "FeedSubscriptionsForEntity",
2186
+ "restrictedDelete": false
2187
+ },
2188
+ {
2189
+ "cascadeDelete": false,
2190
+ "childSObject": "Event",
2191
+ "deprecatedAndHidden": false,
2192
+ "field": "AccountId",
2193
+ "junctionIdListNames": [],
2194
+ "junctionReferenceTo": [],
2195
+ "relationshipName": null,
2196
+ "restrictedDelete": false
2197
+ },
2198
+ {
2199
+ "cascadeDelete": true,
2200
+ "childSObject": "Event",
2201
+ "deprecatedAndHidden": false,
2202
+ "field": "WhatId",
2203
+ "junctionIdListNames": [],
2204
+ "junctionReferenceTo": [],
2205
+ "relationshipName": "Events",
2206
+ "restrictedDelete": false
2207
+ },
2208
+ {
2209
+ "cascadeDelete": false,
2210
+ "childSObject": "EventChangeEvent",
2211
+ "deprecatedAndHidden": false,
2212
+ "field": "AccountId",
2213
+ "junctionIdListNames": [],
2214
+ "junctionReferenceTo": [],
2215
+ "relationshipName": null,
2216
+ "restrictedDelete": false
2217
+ },
2218
+ {
2219
+ "cascadeDelete": false,
2220
+ "childSObject": "EventChangeEvent",
2221
+ "deprecatedAndHidden": false,
2222
+ "field": "WhatId",
2223
+ "junctionIdListNames": [],
2224
+ "junctionReferenceTo": [],
2225
+ "relationshipName": null,
2226
+ "restrictedDelete": false
2227
+ },
2228
+ {
2229
+ "cascadeDelete": false,
2230
+ "childSObject": "EventRelationChangeEvent",
2231
+ "deprecatedAndHidden": false,
2232
+ "field": "RelationId",
2233
+ "junctionIdListNames": [],
2234
+ "junctionReferenceTo": [],
2235
+ "relationshipName": null,
2236
+ "restrictedDelete": false
2237
+ },
2238
+ {
2239
+ "cascadeDelete": false,
2240
+ "childSObject": "Expense",
2241
+ "deprecatedAndHidden": false,
2242
+ "field": "AccountId",
2243
+ "junctionIdListNames": [],
2244
+ "junctionReferenceTo": [],
2245
+ "relationshipName": "Expenses",
2246
+ "restrictedDelete": false
2247
+ },
2248
+ {
2249
+ "cascadeDelete": false,
2250
+ "childSObject": "ExpenseChangeEvent",
2251
+ "deprecatedAndHidden": false,
2252
+ "field": "AccountId",
2253
+ "junctionIdListNames": [],
2254
+ "junctionReferenceTo": [],
2255
+ "relationshipName": null,
2256
+ "restrictedDelete": false
2257
+ },
2258
+ {
2259
+ "cascadeDelete": false,
2260
+ "childSObject": "FeedComment",
2261
+ "deprecatedAndHidden": false,
2262
+ "field": "ParentId",
2263
+ "junctionIdListNames": [],
2264
+ "junctionReferenceTo": [],
2265
+ "relationshipName": null,
2266
+ "restrictedDelete": false
2267
+ },
2268
+ {
2269
+ "cascadeDelete": true,
2270
+ "childSObject": "FeedItem",
2271
+ "deprecatedAndHidden": false,
2272
+ "field": "ParentId",
2273
+ "junctionIdListNames": [],
2274
+ "junctionReferenceTo": [],
2275
+ "relationshipName": null,
2276
+ "restrictedDelete": false
2277
+ },
2278
+ {
2279
+ "cascadeDelete": false,
2280
+ "childSObject": "FinanceBalanceSnapshot",
2281
+ "deprecatedAndHidden": false,
2282
+ "field": "AccountId",
2283
+ "junctionIdListNames": [],
2284
+ "junctionReferenceTo": [],
2285
+ "relationshipName": "FinanceBalanceSnapshots",
2286
+ "restrictedDelete": false
2287
+ },
2288
+ {
2289
+ "cascadeDelete": false,
2290
+ "childSObject": "FinanceBalanceSnapshotChangeEvent",
2291
+ "deprecatedAndHidden": false,
2292
+ "field": "AccountId",
2293
+ "junctionIdListNames": [],
2294
+ "junctionReferenceTo": [],
2295
+ "relationshipName": null,
2296
+ "restrictedDelete": false
2297
+ },
2298
+ {
2299
+ "cascadeDelete": false,
2300
+ "childSObject": "FinanceTransaction",
2301
+ "deprecatedAndHidden": false,
2302
+ "field": "AccountId",
2303
+ "junctionIdListNames": [],
2304
+ "junctionReferenceTo": [],
2305
+ "relationshipName": "FinanceTransactions",
2306
+ "restrictedDelete": false
2307
+ },
2308
+ {
2309
+ "cascadeDelete": false,
2310
+ "childSObject": "FinanceTransactionChangeEvent",
2311
+ "deprecatedAndHidden": false,
2312
+ "field": "AccountId",
2313
+ "junctionIdListNames": [],
2314
+ "junctionReferenceTo": [],
2315
+ "relationshipName": null,
2316
+ "restrictedDelete": false
2317
+ },
2318
+ {
2319
+ "cascadeDelete": false,
2320
+ "childSObject": "FlowExecutionErrorEvent",
2321
+ "deprecatedAndHidden": false,
2322
+ "field": "ContextRecordId",
2323
+ "junctionIdListNames": [],
2324
+ "junctionReferenceTo": [],
2325
+ "relationshipName": null,
2326
+ "restrictedDelete": false
2327
+ },
2328
+ {
2329
+ "cascadeDelete": false,
2330
+ "childSObject": "FlowOrchestrationWorkItem",
2331
+ "deprecatedAndHidden": false,
2332
+ "field": "RelatedRecordId",
2333
+ "junctionIdListNames": [],
2334
+ "junctionReferenceTo": [],
2335
+ "relationshipName": null,
2336
+ "restrictedDelete": false
2337
+ },
2338
+ {
2339
+ "cascadeDelete": false,
2340
+ "childSObject": "FlowRecordRelation",
2341
+ "deprecatedAndHidden": false,
2342
+ "field": "RelatedRecordId",
2343
+ "junctionIdListNames": [],
2344
+ "junctionReferenceTo": [],
2345
+ "relationshipName": null,
2346
+ "restrictedDelete": false
2347
+ },
2348
+ {
2349
+ "cascadeDelete": true,
2350
+ "childSObject": "Invoice",
2351
+ "deprecatedAndHidden": false,
2352
+ "field": "BillingAccountId",
2353
+ "junctionIdListNames": [],
2354
+ "junctionReferenceTo": [],
2355
+ "relationshipName": "Invoices",
2356
+ "restrictedDelete": false
2357
+ },
2358
+ {
2359
+ "cascadeDelete": false,
2360
+ "childSObject": "Lead",
2361
+ "deprecatedAndHidden": false,
2362
+ "field": "ConvertedAccountId",
2363
+ "junctionIdListNames": [],
2364
+ "junctionReferenceTo": [],
2365
+ "relationshipName": null,
2366
+ "restrictedDelete": false
2367
+ },
2368
+ {
2369
+ "cascadeDelete": false,
2370
+ "childSObject": "LeadChangeEvent",
2371
+ "deprecatedAndHidden": false,
2372
+ "field": "ConvertedAccountId",
2373
+ "junctionIdListNames": [],
2374
+ "junctionReferenceTo": [],
2375
+ "relationshipName": null,
2376
+ "restrictedDelete": false
2377
+ },
2378
+ {
2379
+ "cascadeDelete": false,
2380
+ "childSObject": "MaintenancePlan",
2381
+ "deprecatedAndHidden": false,
2382
+ "field": "AccountId",
2383
+ "junctionIdListNames": [],
2384
+ "junctionReferenceTo": [],
2385
+ "relationshipName": "MaintenancePlans",
2386
+ "restrictedDelete": false
2387
+ },
2388
+ {
2389
+ "cascadeDelete": false,
2390
+ "childSObject": "MaintenancePlanChangeEvent",
2391
+ "deprecatedAndHidden": false,
2392
+ "field": "AccountId",
2393
+ "junctionIdListNames": [],
2394
+ "junctionReferenceTo": [],
2395
+ "relationshipName": null,
2396
+ "restrictedDelete": false
2397
+ },
2398
+ {
2399
+ "cascadeDelete": false,
2400
+ "childSObject": "MessagingEndUser",
2401
+ "deprecatedAndHidden": false,
2402
+ "field": "AccountId",
2403
+ "junctionIdListNames": [],
2404
+ "junctionReferenceTo": [],
2405
+ "relationshipName": "MessagingEndUsers",
2406
+ "restrictedDelete": false
2407
+ },
2408
+ {
2409
+ "cascadeDelete": false,
2410
+ "childSObject": "MessagingSession",
2411
+ "deprecatedAndHidden": false,
2412
+ "field": "EndUserAccountId",
2413
+ "junctionIdListNames": [],
2414
+ "junctionReferenceTo": [],
2415
+ "relationshipName": "MessagingSessions",
2416
+ "restrictedDelete": false
2417
+ },
2418
+ {
2419
+ "cascadeDelete": true,
2420
+ "childSObject": "Note",
2421
+ "deprecatedAndHidden": false,
2422
+ "field": "ParentId",
2423
+ "junctionIdListNames": [],
2424
+ "junctionReferenceTo": [],
2425
+ "relationshipName": "Notes",
2426
+ "restrictedDelete": false
2427
+ },
2428
+ {
2429
+ "cascadeDelete": true,
2430
+ "childSObject": "NoteAndAttachment",
2431
+ "deprecatedAndHidden": false,
2432
+ "field": "ParentId",
2433
+ "junctionIdListNames": [],
2434
+ "junctionReferenceTo": [],
2435
+ "relationshipName": "NotesAndAttachments",
2436
+ "restrictedDelete": false
2437
+ },
2438
+ {
2439
+ "cascadeDelete": true,
2440
+ "childSObject": "OpenActivity",
2441
+ "deprecatedAndHidden": false,
2442
+ "field": "AccountId",
2443
+ "junctionIdListNames": [],
2444
+ "junctionReferenceTo": [],
2445
+ "relationshipName": "OpenActivities",
2446
+ "restrictedDelete": false
2447
+ },
2448
+ {
2449
+ "cascadeDelete": true,
2450
+ "childSObject": "Opportunity",
2451
+ "deprecatedAndHidden": false,
2452
+ "field": "AccountId",
2453
+ "junctionIdListNames": [],
2454
+ "junctionReferenceTo": [],
2455
+ "relationshipName": "Opportunities",
2456
+ "restrictedDelete": false
2457
+ },
2458
+ {
2459
+ "cascadeDelete": false,
2460
+ "childSObject": "OpportunityChangeEvent",
2461
+ "deprecatedAndHidden": false,
2462
+ "field": "AccountId",
2463
+ "junctionIdListNames": [],
2464
+ "junctionReferenceTo": [],
2465
+ "relationshipName": null,
2466
+ "restrictedDelete": false
2467
+ },
2468
+ {
2469
+ "cascadeDelete": true,
2470
+ "childSObject": "OpportunityPartner",
2471
+ "deprecatedAndHidden": false,
2472
+ "field": "AccountToId",
2473
+ "junctionIdListNames": [],
2474
+ "junctionReferenceTo": [],
2475
+ "relationshipName": "OpportunityPartnersTo",
2476
+ "restrictedDelete": false
2477
+ },
2478
+ {
2479
+ "cascadeDelete": true,
2480
+ "childSObject": "Order",
2481
+ "deprecatedAndHidden": false,
2482
+ "field": "AccountId",
2483
+ "junctionIdListNames": [],
2484
+ "junctionReferenceTo": [],
2485
+ "relationshipName": "Orders",
2486
+ "restrictedDelete": true
2487
+ },
2488
+ {
2489
+ "cascadeDelete": false,
2490
+ "childSObject": "OrderChangeEvent",
2491
+ "deprecatedAndHidden": false,
2492
+ "field": "AccountId",
2493
+ "junctionIdListNames": [],
2494
+ "junctionReferenceTo": [],
2495
+ "relationshipName": null,
2496
+ "restrictedDelete": false
2497
+ },
2498
+ {
2499
+ "cascadeDelete": false,
2500
+ "childSObject": "OutgoingEmail",
2501
+ "deprecatedAndHidden": false,
2502
+ "field": "RelatedToId",
2503
+ "junctionIdListNames": [],
2504
+ "junctionReferenceTo": [],
2505
+ "relationshipName": null,
2506
+ "restrictedDelete": false
2507
+ },
2508
+ {
2509
+ "cascadeDelete": true,
2510
+ "childSObject": "Partner",
2511
+ "deprecatedAndHidden": false,
2512
+ "field": "AccountFromId",
2513
+ "junctionIdListNames": [],
2514
+ "junctionReferenceTo": [],
2515
+ "relationshipName": "PartnersFrom",
2516
+ "restrictedDelete": false
2517
+ },
2518
+ {
2519
+ "cascadeDelete": true,
2520
+ "childSObject": "Partner",
2521
+ "deprecatedAndHidden": false,
2522
+ "field": "AccountToId",
2523
+ "junctionIdListNames": [],
2524
+ "junctionReferenceTo": [],
2525
+ "relationshipName": "PartnersTo",
2526
+ "restrictedDelete": false
2527
+ },
2528
+ {
2529
+ "cascadeDelete": false,
2530
+ "childSObject": "Payment",
2531
+ "deprecatedAndHidden": false,
2532
+ "field": "AccountId",
2533
+ "junctionIdListNames": [],
2534
+ "junctionReferenceTo": [],
2535
+ "relationshipName": "Payments",
2536
+ "restrictedDelete": false
2537
+ },
2538
+ {
2539
+ "cascadeDelete": false,
2540
+ "childSObject": "PaymentAuthAdjustment",
2541
+ "deprecatedAndHidden": false,
2542
+ "field": "AccountId",
2543
+ "junctionIdListNames": [],
2544
+ "junctionReferenceTo": [],
2545
+ "relationshipName": "PaymentAuthAdjustments",
2546
+ "restrictedDelete": false
2547
+ },
2548
+ {
2549
+ "cascadeDelete": false,
2550
+ "childSObject": "PaymentAuthorization",
2551
+ "deprecatedAndHidden": false,
2552
+ "field": "AccountId",
2553
+ "junctionIdListNames": [],
2554
+ "junctionReferenceTo": [],
2555
+ "relationshipName": "PaymentAuthorizations",
2556
+ "restrictedDelete": false
2557
+ },
2558
+ {
2559
+ "cascadeDelete": false,
2560
+ "childSObject": "PaymentLineInvoice",
2561
+ "deprecatedAndHidden": false,
2562
+ "field": "AssociatedAccountId",
2563
+ "junctionIdListNames": [],
2564
+ "junctionReferenceTo": [],
2565
+ "relationshipName": "PaymentLinesInvoice",
2566
+ "restrictedDelete": false
2567
+ },
2568
+ {
2569
+ "cascadeDelete": false,
2570
+ "childSObject": "PaymentMethod",
2571
+ "deprecatedAndHidden": false,
2572
+ "field": "AccountId",
2573
+ "junctionIdListNames": [],
2574
+ "junctionReferenceTo": [],
2575
+ "relationshipName": null,
2576
+ "restrictedDelete": false
2577
+ },
2578
+ {
2579
+ "cascadeDelete": true,
2580
+ "childSObject": "ProcessInstance",
2581
+ "deprecatedAndHidden": false,
2582
+ "field": "TargetObjectId",
2583
+ "junctionIdListNames": [],
2584
+ "junctionReferenceTo": [],
2585
+ "relationshipName": "ProcessInstances",
2586
+ "restrictedDelete": false
2587
+ },
2588
+ {
2589
+ "cascadeDelete": false,
2590
+ "childSObject": "ProcessInstanceHistory",
2591
+ "deprecatedAndHidden": false,
2592
+ "field": "TargetObjectId",
2593
+ "junctionIdListNames": [],
2594
+ "junctionReferenceTo": [],
2595
+ "relationshipName": "ProcessSteps",
2596
+ "restrictedDelete": false
2597
+ },
2598
+ {
2599
+ "cascadeDelete": false,
2600
+ "childSObject": "ProductRequest",
2601
+ "deprecatedAndHidden": false,
2602
+ "field": "AccountId",
2603
+ "junctionIdListNames": [],
2604
+ "junctionReferenceTo": [],
2605
+ "relationshipName": "ProductRequests",
2606
+ "restrictedDelete": false
2607
+ },
2608
+ {
2609
+ "cascadeDelete": false,
2610
+ "childSObject": "ProductRequestChangeEvent",
2611
+ "deprecatedAndHidden": false,
2612
+ "field": "AccountId",
2613
+ "junctionIdListNames": [],
2614
+ "junctionReferenceTo": [],
2615
+ "relationshipName": null,
2616
+ "restrictedDelete": false
2617
+ },
2618
+ {
2619
+ "cascadeDelete": false,
2620
+ "childSObject": "ProductRequestLineItem",
2621
+ "deprecatedAndHidden": false,
2622
+ "field": "AccountId",
2623
+ "junctionIdListNames": [],
2624
+ "junctionReferenceTo": [],
2625
+ "relationshipName": "ProductRequestLineItems",
2626
+ "restrictedDelete": false
2627
+ },
2628
+ {
2629
+ "cascadeDelete": false,
2630
+ "childSObject": "ProductRequestLineItemChangeEvent",
2631
+ "deprecatedAndHidden": false,
2632
+ "field": "AccountId",
2633
+ "junctionIdListNames": [],
2634
+ "junctionReferenceTo": [],
2635
+ "relationshipName": null,
2636
+ "restrictedDelete": false
2637
+ },
2638
+ {
2639
+ "cascadeDelete": true,
2640
+ "childSObject": "RecordAction",
2641
+ "deprecatedAndHidden": false,
2642
+ "field": "RecordId",
2643
+ "junctionIdListNames": [],
2644
+ "junctionReferenceTo": [],
2645
+ "relationshipName": "RecordActions",
2646
+ "restrictedDelete": false
2647
+ },
2648
+ {
2649
+ "cascadeDelete": false,
2650
+ "childSObject": "RecordActionHistory",
2651
+ "deprecatedAndHidden": false,
2652
+ "field": "ParentRecordId",
2653
+ "junctionIdListNames": [],
2654
+ "junctionReferenceTo": [],
2655
+ "relationshipName": "RecordActionHistories",
2656
+ "restrictedDelete": false
2657
+ },
2658
+ {
2659
+ "cascadeDelete": false,
2660
+ "childSObject": "Refund",
2661
+ "deprecatedAndHidden": false,
2662
+ "field": "AccountId",
2663
+ "junctionIdListNames": [],
2664
+ "junctionReferenceTo": [],
2665
+ "relationshipName": "Refunds",
2666
+ "restrictedDelete": false
2667
+ },
2668
+ {
2669
+ "cascadeDelete": false,
2670
+ "childSObject": "RefundLinePayment",
2671
+ "deprecatedAndHidden": false,
2672
+ "field": "AssociatedAccountId",
2673
+ "junctionIdListNames": [],
2674
+ "junctionReferenceTo": [],
2675
+ "relationshipName": "RefundLinePayments",
2676
+ "restrictedDelete": false
2677
+ },
2678
+ {
2679
+ "cascadeDelete": true,
2680
+ "childSObject": "ResourcePreference",
2681
+ "deprecatedAndHidden": false,
2682
+ "field": "RelatedRecordId",
2683
+ "junctionIdListNames": [],
2684
+ "junctionReferenceTo": [],
2685
+ "relationshipName": "ResourcePreferences",
2686
+ "restrictedDelete": false
2687
+ },
2688
+ {
2689
+ "cascadeDelete": false,
2690
+ "childSObject": "ResourcePreferenceChangeEvent",
2691
+ "deprecatedAndHidden": false,
2692
+ "field": "RelatedRecordId",
2693
+ "junctionIdListNames": [],
2694
+ "junctionReferenceTo": [],
2695
+ "relationshipName": null,
2696
+ "restrictedDelete": false
2697
+ },
2698
+ {
2699
+ "cascadeDelete": false,
2700
+ "childSObject": "ReturnOrder",
2701
+ "deprecatedAndHidden": false,
2702
+ "field": "AccountId",
2703
+ "junctionIdListNames": [],
2704
+ "junctionReferenceTo": [],
2705
+ "relationshipName": "ReturnOrders",
2706
+ "restrictedDelete": false
2707
+ },
2708
+ {
2709
+ "cascadeDelete": false,
2710
+ "childSObject": "ReturnOrderChangeEvent",
2711
+ "deprecatedAndHidden": false,
2712
+ "field": "AccountId",
2713
+ "junctionIdListNames": [],
2714
+ "junctionReferenceTo": [],
2715
+ "relationshipName": null,
2716
+ "restrictedDelete": false
2717
+ },
2718
+ {
2719
+ "cascadeDelete": true,
2720
+ "childSObject": "ScorecardAssociation",
2721
+ "deprecatedAndHidden": false,
2722
+ "field": "TargetEntityId",
2723
+ "junctionIdListNames": [],
2724
+ "junctionReferenceTo": [],
2725
+ "relationshipName": "ScorecardAssociations",
2726
+ "restrictedDelete": false
2727
+ },
2728
+ {
2729
+ "cascadeDelete": false,
2730
+ "childSObject": "ServiceAppointment",
2731
+ "deprecatedAndHidden": false,
2732
+ "field": "AccountId",
2733
+ "junctionIdListNames": [],
2734
+ "junctionReferenceTo": [],
2735
+ "relationshipName": "ServiceAppointmentAccount",
2736
+ "restrictedDelete": false
2737
+ },
2738
+ {
2739
+ "cascadeDelete": true,
2740
+ "childSObject": "ServiceAppointment",
2741
+ "deprecatedAndHidden": false,
2742
+ "field": "ParentRecordId",
2743
+ "junctionIdListNames": [],
2744
+ "junctionReferenceTo": [],
2745
+ "relationshipName": "ServiceAppointments",
2746
+ "restrictedDelete": false
2747
+ },
2748
+ {
2749
+ "cascadeDelete": false,
2750
+ "childSObject": "ServiceAppointmentChangeEvent",
2751
+ "deprecatedAndHidden": false,
2752
+ "field": "AccountId",
2753
+ "junctionIdListNames": [],
2754
+ "junctionReferenceTo": [],
2755
+ "relationshipName": null,
2756
+ "restrictedDelete": false
2757
+ },
2758
+ {
2759
+ "cascadeDelete": false,
2760
+ "childSObject": "ServiceAppointmentChangeEvent",
2761
+ "deprecatedAndHidden": false,
2762
+ "field": "ParentRecordId",
2763
+ "junctionIdListNames": [],
2764
+ "junctionReferenceTo": [],
2765
+ "relationshipName": null,
2766
+ "restrictedDelete": false
2767
+ },
2768
+ {
2769
+ "cascadeDelete": false,
2770
+ "childSObject": "ServiceContract",
2771
+ "deprecatedAndHidden": false,
2772
+ "field": "AccountId",
2773
+ "junctionIdListNames": [],
2774
+ "junctionReferenceTo": [],
2775
+ "relationshipName": "ServiceContracts",
2776
+ "restrictedDelete": true
2777
+ },
2778
+ {
2779
+ "cascadeDelete": false,
2780
+ "childSObject": "ServiceContractChangeEvent",
2781
+ "deprecatedAndHidden": false,
2782
+ "field": "AccountId",
2783
+ "junctionIdListNames": [],
2784
+ "junctionReferenceTo": [],
2785
+ "relationshipName": null,
2786
+ "restrictedDelete": false
2787
+ },
2788
+ {
2789
+ "cascadeDelete": false,
2790
+ "childSObject": "ServiceResource",
2791
+ "deprecatedAndHidden": false,
2792
+ "field": "AccountId",
2793
+ "junctionIdListNames": [],
2794
+ "junctionReferenceTo": [],
2795
+ "relationshipName": "ServiceResources",
2796
+ "restrictedDelete": true
2797
+ },
2798
+ {
2799
+ "cascadeDelete": false,
2800
+ "childSObject": "ServiceResourceChangeEvent",
2801
+ "deprecatedAndHidden": false,
2802
+ "field": "AccountId",
2803
+ "junctionIdListNames": [],
2804
+ "junctionReferenceTo": [],
2805
+ "relationshipName": null,
2806
+ "restrictedDelete": false
2807
+ },
2808
+ {
2809
+ "cascadeDelete": true,
2810
+ "childSObject": "Swarm",
2811
+ "deprecatedAndHidden": false,
2812
+ "field": "RelatedRecordId",
2813
+ "junctionIdListNames": [],
2814
+ "junctionReferenceTo": [],
2815
+ "relationshipName": "Swarms",
2816
+ "restrictedDelete": false
2817
+ },
2818
+ {
2819
+ "cascadeDelete": true,
2820
+ "childSObject": "SwarmMember",
2821
+ "deprecatedAndHidden": false,
2822
+ "field": "RelatedRecordId",
2823
+ "junctionIdListNames": [],
2824
+ "junctionReferenceTo": [],
2825
+ "relationshipName": "SwarmMembers",
2826
+ "restrictedDelete": false
2827
+ },
2828
+ {
2829
+ "cascadeDelete": false,
2830
+ "childSObject": "Task",
2831
+ "deprecatedAndHidden": false,
2832
+ "field": "AccountId",
2833
+ "junctionIdListNames": [],
2834
+ "junctionReferenceTo": [],
2835
+ "relationshipName": null,
2836
+ "restrictedDelete": false
2837
+ },
2838
+ {
2839
+ "cascadeDelete": true,
2840
+ "childSObject": "Task",
2841
+ "deprecatedAndHidden": false,
2842
+ "field": "WhatId",
2843
+ "junctionIdListNames": [],
2844
+ "junctionReferenceTo": [],
2845
+ "relationshipName": "Tasks",
2846
+ "restrictedDelete": false
2847
+ },
2848
+ {
2849
+ "cascadeDelete": false,
2850
+ "childSObject": "TaskChangeEvent",
2851
+ "deprecatedAndHidden": false,
2852
+ "field": "AccountId",
2853
+ "junctionIdListNames": [],
2854
+ "junctionReferenceTo": [],
2855
+ "relationshipName": null,
2856
+ "restrictedDelete": false
2857
+ },
2858
+ {
2859
+ "cascadeDelete": false,
2860
+ "childSObject": "TaskChangeEvent",
2861
+ "deprecatedAndHidden": false,
2862
+ "field": "WhatId",
2863
+ "junctionIdListNames": [],
2864
+ "junctionReferenceTo": [],
2865
+ "relationshipName": null,
2866
+ "restrictedDelete": false
2867
+ },
2868
+ {
2869
+ "cascadeDelete": true,
2870
+ "childSObject": "TopicAssignment",
2871
+ "deprecatedAndHidden": false,
2872
+ "field": "EntityId",
2873
+ "junctionIdListNames": [],
2874
+ "junctionReferenceTo": [],
2875
+ "relationshipName": "TopicAssignments",
2876
+ "restrictedDelete": false
2877
+ },
2878
+ {
2879
+ "cascadeDelete": false,
2880
+ "childSObject": "User",
2881
+ "deprecatedAndHidden": false,
2882
+ "field": "AccountId",
2883
+ "junctionIdListNames": [],
2884
+ "junctionReferenceTo": [],
2885
+ "relationshipName": "Users",
2886
+ "restrictedDelete": false
2887
+ },
2888
+ {
2889
+ "cascadeDelete": false,
2890
+ "childSObject": "UserChangeEvent",
2891
+ "deprecatedAndHidden": false,
2892
+ "field": "AccountId",
2893
+ "junctionIdListNames": [],
2894
+ "junctionReferenceTo": [],
2895
+ "relationshipName": null,
2896
+ "restrictedDelete": false
2897
+ },
2898
+ {
2899
+ "cascadeDelete": false,
2900
+ "childSObject": "UserRole",
2901
+ "deprecatedAndHidden": false,
2902
+ "field": "PortalAccountId",
2903
+ "junctionIdListNames": [],
2904
+ "junctionReferenceTo": [],
2905
+ "relationshipName": null,
2906
+ "restrictedDelete": false
2907
+ },
2908
+ {
2909
+ "cascadeDelete": false,
2910
+ "childSObject": "WorkOrder",
2911
+ "deprecatedAndHidden": false,
2912
+ "field": "AccountId",
2913
+ "junctionIdListNames": [],
2914
+ "junctionReferenceTo": [],
2915
+ "relationshipName": "WorkOrders",
2916
+ "restrictedDelete": false
2917
+ },
2918
+ {
2919
+ "cascadeDelete": false,
2920
+ "childSObject": "WorkOrderChangeEvent",
2921
+ "deprecatedAndHidden": false,
2922
+ "field": "AccountId",
2923
+ "junctionIdListNames": [],
2924
+ "junctionReferenceTo": [],
2925
+ "relationshipName": null,
2926
+ "restrictedDelete": false
2927
+ },
2928
+ {
2929
+ "cascadeDelete": true,
2930
+ "childSObject": "WorkPlanSelectionRule",
2931
+ "deprecatedAndHidden": false,
2932
+ "field": "AccountId",
2933
+ "junctionIdListNames": [],
2934
+ "junctionReferenceTo": [],
2935
+ "relationshipName": "WorkPlanSelectionRules",
2936
+ "restrictedDelete": false
2937
+ },
2938
+ {
2939
+ "cascadeDelete": false,
2940
+ "childSObject": "WorkPlanSelectionRuleChangeEvent",
2941
+ "deprecatedAndHidden": false,
2942
+ "field": "AccountId",
2943
+ "junctionIdListNames": [],
2944
+ "junctionReferenceTo": [],
2945
+ "relationshipName": null,
2946
+ "restrictedDelete": false
2947
+ }
2948
+ ],
2949
+ "custom": false,
2950
+ "name": "Account",
2951
+ "queryable": true
2952
+ }