@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,1304 @@
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": "Contract ID",
12
+ "name": "Id",
13
+ "nillable": false,
14
+ "picklistValues": [],
15
+ "referenceTo": [],
16
+ "relationshipName": null,
17
+ "sortable": true,
18
+ "type": "id"
19
+ },
20
+ {
21
+ "aggregatable": true,
22
+ "custom": false,
23
+ "defaultValue": null,
24
+ "extraTypeInfo": null,
25
+ "filterable": true,
26
+ "groupable": true,
27
+ "inlineHelpText": null,
28
+ "label": "Account ID",
29
+ "name": "AccountId",
30
+ "nillable": false,
31
+ "picklistValues": [],
32
+ "referenceTo": [
33
+ "Account"
34
+ ],
35
+ "relationshipName": "Account",
36
+ "sortable": true,
37
+ "type": "reference"
38
+ },
39
+ {
40
+ "aggregatable": true,
41
+ "custom": false,
42
+ "defaultValue": null,
43
+ "extraTypeInfo": null,
44
+ "filterable": true,
45
+ "groupable": true,
46
+ "inlineHelpText": null,
47
+ "label": "Price Book ID",
48
+ "name": "Pricebook2Id",
49
+ "nillable": true,
50
+ "picklistValues": [],
51
+ "referenceTo": [
52
+ "Pricebook2"
53
+ ],
54
+ "relationshipName": "Pricebook2",
55
+ "sortable": true,
56
+ "type": "reference"
57
+ },
58
+ {
59
+ "aggregatable": true,
60
+ "custom": false,
61
+ "defaultValue": null,
62
+ "extraTypeInfo": null,
63
+ "filterable": true,
64
+ "groupable": true,
65
+ "inlineHelpText": null,
66
+ "label": "Owner Expiration Notice",
67
+ "name": "OwnerExpirationNotice",
68
+ "nillable": true,
69
+ "picklistValues": [
70
+ {
71
+ "active": true,
72
+ "defaultValue": false,
73
+ "label": "15 Days",
74
+ "validFor": null,
75
+ "value": "15"
76
+ },
77
+ {
78
+ "active": true,
79
+ "defaultValue": false,
80
+ "label": "30 Days",
81
+ "validFor": null,
82
+ "value": "30"
83
+ },
84
+ {
85
+ "active": true,
86
+ "defaultValue": false,
87
+ "label": "45 Days",
88
+ "validFor": null,
89
+ "value": "45"
90
+ },
91
+ {
92
+ "active": true,
93
+ "defaultValue": false,
94
+ "label": "60 Days",
95
+ "validFor": null,
96
+ "value": "60"
97
+ },
98
+ {
99
+ "active": true,
100
+ "defaultValue": false,
101
+ "label": "90 Days",
102
+ "validFor": null,
103
+ "value": "90"
104
+ },
105
+ {
106
+ "active": true,
107
+ "defaultValue": false,
108
+ "label": "120 Days",
109
+ "validFor": null,
110
+ "value": "120"
111
+ }
112
+ ],
113
+ "referenceTo": [],
114
+ "relationshipName": null,
115
+ "sortable": true,
116
+ "type": "picklist"
117
+ },
118
+ {
119
+ "aggregatable": true,
120
+ "custom": false,
121
+ "defaultValue": null,
122
+ "extraTypeInfo": null,
123
+ "filterable": true,
124
+ "groupable": true,
125
+ "inlineHelpText": null,
126
+ "label": "Contract Start Date",
127
+ "name": "StartDate",
128
+ "nillable": true,
129
+ "picklistValues": [],
130
+ "referenceTo": [],
131
+ "relationshipName": null,
132
+ "sortable": true,
133
+ "type": "date"
134
+ },
135
+ {
136
+ "aggregatable": true,
137
+ "custom": false,
138
+ "defaultValue": null,
139
+ "extraTypeInfo": null,
140
+ "filterable": true,
141
+ "groupable": true,
142
+ "inlineHelpText": null,
143
+ "label": "Contract End Date",
144
+ "name": "EndDate",
145
+ "nillable": true,
146
+ "picklistValues": [],
147
+ "referenceTo": [],
148
+ "relationshipName": null,
149
+ "sortable": true,
150
+ "type": "date"
151
+ },
152
+ {
153
+ "aggregatable": true,
154
+ "custom": false,
155
+ "defaultValue": null,
156
+ "extraTypeInfo": "plaintextarea",
157
+ "filterable": true,
158
+ "groupable": true,
159
+ "inlineHelpText": null,
160
+ "label": "Billing Street",
161
+ "name": "BillingStreet",
162
+ "nillable": true,
163
+ "picklistValues": [],
164
+ "referenceTo": [],
165
+ "relationshipName": null,
166
+ "sortable": true,
167
+ "type": "textarea"
168
+ },
169
+ {
170
+ "aggregatable": true,
171
+ "custom": false,
172
+ "defaultValue": null,
173
+ "extraTypeInfo": null,
174
+ "filterable": true,
175
+ "groupable": true,
176
+ "inlineHelpText": null,
177
+ "label": "Billing City",
178
+ "name": "BillingCity",
179
+ "nillable": true,
180
+ "picklistValues": [],
181
+ "referenceTo": [],
182
+ "relationshipName": null,
183
+ "sortable": true,
184
+ "type": "string"
185
+ },
186
+ {
187
+ "aggregatable": true,
188
+ "custom": false,
189
+ "defaultValue": null,
190
+ "extraTypeInfo": null,
191
+ "filterable": true,
192
+ "groupable": true,
193
+ "inlineHelpText": null,
194
+ "label": "Billing State/Province",
195
+ "name": "BillingState",
196
+ "nillable": true,
197
+ "picklistValues": [],
198
+ "referenceTo": [],
199
+ "relationshipName": null,
200
+ "sortable": true,
201
+ "type": "string"
202
+ },
203
+ {
204
+ "aggregatable": true,
205
+ "custom": false,
206
+ "defaultValue": null,
207
+ "extraTypeInfo": null,
208
+ "filterable": true,
209
+ "groupable": true,
210
+ "inlineHelpText": null,
211
+ "label": "Billing Zip/Postal Code",
212
+ "name": "BillingPostalCode",
213
+ "nillable": true,
214
+ "picklistValues": [],
215
+ "referenceTo": [],
216
+ "relationshipName": null,
217
+ "sortable": true,
218
+ "type": "string"
219
+ },
220
+ {
221
+ "aggregatable": true,
222
+ "custom": false,
223
+ "defaultValue": null,
224
+ "extraTypeInfo": null,
225
+ "filterable": true,
226
+ "groupable": true,
227
+ "inlineHelpText": null,
228
+ "label": "Billing Country",
229
+ "name": "BillingCountry",
230
+ "nillable": true,
231
+ "picklistValues": [],
232
+ "referenceTo": [],
233
+ "relationshipName": null,
234
+ "sortable": true,
235
+ "type": "string"
236
+ },
237
+ {
238
+ "aggregatable": true,
239
+ "custom": false,
240
+ "defaultValue": null,
241
+ "extraTypeInfo": null,
242
+ "filterable": true,
243
+ "groupable": false,
244
+ "inlineHelpText": null,
245
+ "label": "Billing Latitude",
246
+ "name": "BillingLatitude",
247
+ "nillable": true,
248
+ "picklistValues": [],
249
+ "referenceTo": [],
250
+ "relationshipName": null,
251
+ "sortable": true,
252
+ "type": "double"
253
+ },
254
+ {
255
+ "aggregatable": true,
256
+ "custom": false,
257
+ "defaultValue": null,
258
+ "extraTypeInfo": null,
259
+ "filterable": true,
260
+ "groupable": false,
261
+ "inlineHelpText": null,
262
+ "label": "Billing Longitude",
263
+ "name": "BillingLongitude",
264
+ "nillable": true,
265
+ "picklistValues": [],
266
+ "referenceTo": [],
267
+ "relationshipName": null,
268
+ "sortable": true,
269
+ "type": "double"
270
+ },
271
+ {
272
+ "aggregatable": true,
273
+ "custom": false,
274
+ "defaultValue": null,
275
+ "extraTypeInfo": null,
276
+ "filterable": true,
277
+ "groupable": true,
278
+ "inlineHelpText": null,
279
+ "label": "Billing Geocode Accuracy",
280
+ "name": "BillingGeocodeAccuracy",
281
+ "nillable": true,
282
+ "picklistValues": [
283
+ {
284
+ "active": true,
285
+ "defaultValue": false,
286
+ "label": "Address",
287
+ "validFor": null,
288
+ "value": "Address"
289
+ },
290
+ {
291
+ "active": true,
292
+ "defaultValue": false,
293
+ "label": "NearAddress",
294
+ "validFor": null,
295
+ "value": "NearAddress"
296
+ },
297
+ {
298
+ "active": true,
299
+ "defaultValue": false,
300
+ "label": "Block",
301
+ "validFor": null,
302
+ "value": "Block"
303
+ },
304
+ {
305
+ "active": true,
306
+ "defaultValue": false,
307
+ "label": "Street",
308
+ "validFor": null,
309
+ "value": "Street"
310
+ },
311
+ {
312
+ "active": true,
313
+ "defaultValue": false,
314
+ "label": "ExtendedZip",
315
+ "validFor": null,
316
+ "value": "ExtendedZip"
317
+ },
318
+ {
319
+ "active": true,
320
+ "defaultValue": false,
321
+ "label": "Zip",
322
+ "validFor": null,
323
+ "value": "Zip"
324
+ },
325
+ {
326
+ "active": true,
327
+ "defaultValue": false,
328
+ "label": "Neighborhood",
329
+ "validFor": null,
330
+ "value": "Neighborhood"
331
+ },
332
+ {
333
+ "active": true,
334
+ "defaultValue": false,
335
+ "label": "City",
336
+ "validFor": null,
337
+ "value": "City"
338
+ },
339
+ {
340
+ "active": true,
341
+ "defaultValue": false,
342
+ "label": "County",
343
+ "validFor": null,
344
+ "value": "County"
345
+ },
346
+ {
347
+ "active": true,
348
+ "defaultValue": false,
349
+ "label": "State",
350
+ "validFor": null,
351
+ "value": "State"
352
+ },
353
+ {
354
+ "active": true,
355
+ "defaultValue": false,
356
+ "label": "Unknown",
357
+ "validFor": null,
358
+ "value": "Unknown"
359
+ }
360
+ ],
361
+ "referenceTo": [],
362
+ "relationshipName": null,
363
+ "sortable": true,
364
+ "type": "picklist"
365
+ },
366
+ {
367
+ "aggregatable": false,
368
+ "custom": false,
369
+ "defaultValue": null,
370
+ "extraTypeInfo": null,
371
+ "filterable": true,
372
+ "groupable": false,
373
+ "inlineHelpText": null,
374
+ "label": "Billing Address",
375
+ "name": "BillingAddress",
376
+ "nillable": true,
377
+ "picklistValues": [],
378
+ "referenceTo": [],
379
+ "relationshipName": null,
380
+ "sortable": false,
381
+ "type": "address"
382
+ },
383
+ {
384
+ "aggregatable": true,
385
+ "custom": false,
386
+ "defaultValue": null,
387
+ "extraTypeInfo": null,
388
+ "filterable": true,
389
+ "groupable": true,
390
+ "inlineHelpText": null,
391
+ "label": "Contract Term",
392
+ "name": "ContractTerm",
393
+ "nillable": true,
394
+ "picklistValues": [],
395
+ "referenceTo": [],
396
+ "relationshipName": null,
397
+ "sortable": true,
398
+ "type": "int"
399
+ },
400
+ {
401
+ "aggregatable": true,
402
+ "custom": false,
403
+ "defaultValue": null,
404
+ "extraTypeInfo": null,
405
+ "filterable": true,
406
+ "groupable": true,
407
+ "inlineHelpText": null,
408
+ "label": "Owner ID",
409
+ "name": "OwnerId",
410
+ "nillable": false,
411
+ "picklistValues": [],
412
+ "referenceTo": [
413
+ "User"
414
+ ],
415
+ "relationshipName": "Owner",
416
+ "sortable": true,
417
+ "type": "reference"
418
+ },
419
+ {
420
+ "aggregatable": true,
421
+ "custom": false,
422
+ "defaultValue": null,
423
+ "extraTypeInfo": null,
424
+ "filterable": true,
425
+ "groupable": true,
426
+ "inlineHelpText": null,
427
+ "label": "Status",
428
+ "name": "Status",
429
+ "nillable": false,
430
+ "picklistValues": [
431
+ {
432
+ "active": true,
433
+ "defaultValue": false,
434
+ "label": "In Approval Process",
435
+ "validFor": null,
436
+ "value": "In Approval Process"
437
+ },
438
+ {
439
+ "active": true,
440
+ "defaultValue": false,
441
+ "label": "Activated",
442
+ "validFor": null,
443
+ "value": "Activated"
444
+ },
445
+ {
446
+ "active": true,
447
+ "defaultValue": false,
448
+ "label": "Draft",
449
+ "validFor": null,
450
+ "value": "Draft"
451
+ }
452
+ ],
453
+ "referenceTo": [],
454
+ "relationshipName": null,
455
+ "sortable": true,
456
+ "type": "picklist"
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": "Company Signed By ID",
467
+ "name": "CompanySignedId",
468
+ "nillable": true,
469
+ "picklistValues": [],
470
+ "referenceTo": [
471
+ "User"
472
+ ],
473
+ "relationshipName": "CompanySigned",
474
+ "sortable": true,
475
+ "type": "reference"
476
+ },
477
+ {
478
+ "aggregatable": true,
479
+ "custom": false,
480
+ "defaultValue": null,
481
+ "extraTypeInfo": null,
482
+ "filterable": true,
483
+ "groupable": true,
484
+ "inlineHelpText": null,
485
+ "label": "Company Signed Date",
486
+ "name": "CompanySignedDate",
487
+ "nillable": true,
488
+ "picklistValues": [],
489
+ "referenceTo": [],
490
+ "relationshipName": null,
491
+ "sortable": true,
492
+ "type": "date"
493
+ },
494
+ {
495
+ "aggregatable": true,
496
+ "custom": false,
497
+ "defaultValue": null,
498
+ "extraTypeInfo": null,
499
+ "filterable": true,
500
+ "groupable": true,
501
+ "inlineHelpText": null,
502
+ "label": "Customer Signed By ID",
503
+ "name": "CustomerSignedId",
504
+ "nillable": true,
505
+ "picklistValues": [],
506
+ "referenceTo": [
507
+ "Contact"
508
+ ],
509
+ "relationshipName": "CustomerSigned",
510
+ "sortable": true,
511
+ "type": "reference"
512
+ },
513
+ {
514
+ "aggregatable": true,
515
+ "custom": false,
516
+ "defaultValue": null,
517
+ "extraTypeInfo": null,
518
+ "filterable": true,
519
+ "groupable": true,
520
+ "inlineHelpText": null,
521
+ "label": "Customer Signed Title",
522
+ "name": "CustomerSignedTitle",
523
+ "nillable": true,
524
+ "picklistValues": [],
525
+ "referenceTo": [],
526
+ "relationshipName": null,
527
+ "sortable": true,
528
+ "type": "string"
529
+ },
530
+ {
531
+ "aggregatable": true,
532
+ "custom": false,
533
+ "defaultValue": null,
534
+ "extraTypeInfo": null,
535
+ "filterable": true,
536
+ "groupable": true,
537
+ "inlineHelpText": null,
538
+ "label": "Customer Signed Date",
539
+ "name": "CustomerSignedDate",
540
+ "nillable": true,
541
+ "picklistValues": [],
542
+ "referenceTo": [],
543
+ "relationshipName": null,
544
+ "sortable": true,
545
+ "type": "date"
546
+ },
547
+ {
548
+ "aggregatable": true,
549
+ "custom": false,
550
+ "defaultValue": null,
551
+ "extraTypeInfo": "plaintextarea",
552
+ "filterable": true,
553
+ "groupable": false,
554
+ "inlineHelpText": null,
555
+ "label": "Special Terms",
556
+ "name": "SpecialTerms",
557
+ "nillable": true,
558
+ "picklistValues": [],
559
+ "referenceTo": [],
560
+ "relationshipName": null,
561
+ "sortable": true,
562
+ "type": "textarea"
563
+ },
564
+ {
565
+ "aggregatable": true,
566
+ "custom": false,
567
+ "defaultValue": null,
568
+ "extraTypeInfo": null,
569
+ "filterable": true,
570
+ "groupable": true,
571
+ "inlineHelpText": null,
572
+ "label": "Activated By ID",
573
+ "name": "ActivatedById",
574
+ "nillable": true,
575
+ "picklistValues": [],
576
+ "referenceTo": [
577
+ "User"
578
+ ],
579
+ "relationshipName": "ActivatedBy",
580
+ "sortable": true,
581
+ "type": "reference"
582
+ },
583
+ {
584
+ "aggregatable": true,
585
+ "custom": false,
586
+ "defaultValue": null,
587
+ "extraTypeInfo": null,
588
+ "filterable": true,
589
+ "groupable": false,
590
+ "inlineHelpText": null,
591
+ "label": "Activated Date",
592
+ "name": "ActivatedDate",
593
+ "nillable": true,
594
+ "picklistValues": [],
595
+ "referenceTo": [],
596
+ "relationshipName": null,
597
+ "sortable": true,
598
+ "type": "datetime"
599
+ },
600
+ {
601
+ "aggregatable": true,
602
+ "custom": false,
603
+ "defaultValue": null,
604
+ "extraTypeInfo": null,
605
+ "filterable": true,
606
+ "groupable": true,
607
+ "inlineHelpText": null,
608
+ "label": "Status Category",
609
+ "name": "StatusCode",
610
+ "nillable": false,
611
+ "picklistValues": [
612
+ {
613
+ "active": true,
614
+ "defaultValue": false,
615
+ "label": "Draft",
616
+ "validFor": null,
617
+ "value": "Draft"
618
+ },
619
+ {
620
+ "active": true,
621
+ "defaultValue": false,
622
+ "label": "In Approval Process",
623
+ "validFor": null,
624
+ "value": "InApproval"
625
+ },
626
+ {
627
+ "active": true,
628
+ "defaultValue": false,
629
+ "label": "Activated",
630
+ "validFor": null,
631
+ "value": "Activated"
632
+ },
633
+ {
634
+ "active": true,
635
+ "defaultValue": false,
636
+ "label": "Terminated",
637
+ "validFor": null,
638
+ "value": "Terminated"
639
+ },
640
+ {
641
+ "active": true,
642
+ "defaultValue": false,
643
+ "label": "Expired",
644
+ "validFor": null,
645
+ "value": "Expired"
646
+ },
647
+ {
648
+ "active": true,
649
+ "defaultValue": false,
650
+ "label": "Rejected",
651
+ "validFor": null,
652
+ "value": "Rejected"
653
+ },
654
+ {
655
+ "active": true,
656
+ "defaultValue": false,
657
+ "label": "Negotiating",
658
+ "validFor": null,
659
+ "value": "Negotiating"
660
+ },
661
+ {
662
+ "active": true,
663
+ "defaultValue": false,
664
+ "label": "Awaiting Signature",
665
+ "validFor": null,
666
+ "value": "AwaitingSignature"
667
+ },
668
+ {
669
+ "active": true,
670
+ "defaultValue": false,
671
+ "label": "Signature Declined",
672
+ "validFor": null,
673
+ "value": "SignatureDeclined"
674
+ },
675
+ {
676
+ "active": true,
677
+ "defaultValue": false,
678
+ "label": "Signed",
679
+ "validFor": null,
680
+ "value": "Signed"
681
+ },
682
+ {
683
+ "active": true,
684
+ "defaultValue": false,
685
+ "label": "Canceled",
686
+ "validFor": null,
687
+ "value": "Cancelled"
688
+ },
689
+ {
690
+ "active": true,
691
+ "defaultValue": false,
692
+ "label": "Contract Expired",
693
+ "validFor": null,
694
+ "value": "Expired2"
695
+ },
696
+ {
697
+ "active": true,
698
+ "defaultValue": false,
699
+ "label": "Contract Terminated",
700
+ "validFor": null,
701
+ "value": "Terminated2"
702
+ }
703
+ ],
704
+ "referenceTo": [],
705
+ "relationshipName": null,
706
+ "sortable": true,
707
+ "type": "picklist"
708
+ },
709
+ {
710
+ "aggregatable": false,
711
+ "custom": false,
712
+ "defaultValue": null,
713
+ "extraTypeInfo": "plaintextarea",
714
+ "filterable": false,
715
+ "groupable": false,
716
+ "inlineHelpText": null,
717
+ "label": "Description",
718
+ "name": "Description",
719
+ "nillable": true,
720
+ "picklistValues": [],
721
+ "referenceTo": [],
722
+ "relationshipName": null,
723
+ "sortable": false,
724
+ "type": "textarea"
725
+ },
726
+ {
727
+ "aggregatable": false,
728
+ "custom": false,
729
+ "defaultValue": null,
730
+ "extraTypeInfo": null,
731
+ "filterable": true,
732
+ "groupable": true,
733
+ "inlineHelpText": null,
734
+ "label": "Deleted",
735
+ "name": "IsDeleted",
736
+ "nillable": false,
737
+ "picklistValues": [],
738
+ "referenceTo": [],
739
+ "relationshipName": null,
740
+ "sortable": true,
741
+ "type": "boolean"
742
+ },
743
+ {
744
+ "aggregatable": true,
745
+ "custom": false,
746
+ "defaultValue": null,
747
+ "extraTypeInfo": null,
748
+ "filterable": true,
749
+ "groupable": false,
750
+ "inlineHelpText": null,
751
+ "label": "Contract Number",
752
+ "name": "ContractNumber",
753
+ "nillable": false,
754
+ "picklistValues": [],
755
+ "referenceTo": [],
756
+ "relationshipName": null,
757
+ "sortable": true,
758
+ "type": "string"
759
+ },
760
+ {
761
+ "aggregatable": true,
762
+ "custom": false,
763
+ "defaultValue": null,
764
+ "extraTypeInfo": null,
765
+ "filterable": true,
766
+ "groupable": false,
767
+ "inlineHelpText": null,
768
+ "label": "Last Approved Date",
769
+ "name": "LastApprovedDate",
770
+ "nillable": true,
771
+ "picklistValues": [],
772
+ "referenceTo": [],
773
+ "relationshipName": null,
774
+ "sortable": true,
775
+ "type": "datetime"
776
+ },
777
+ {
778
+ "aggregatable": true,
779
+ "custom": false,
780
+ "defaultValue": null,
781
+ "extraTypeInfo": null,
782
+ "filterable": true,
783
+ "groupable": false,
784
+ "inlineHelpText": null,
785
+ "label": "Created Date",
786
+ "name": "CreatedDate",
787
+ "nillable": false,
788
+ "picklistValues": [],
789
+ "referenceTo": [],
790
+ "relationshipName": null,
791
+ "sortable": true,
792
+ "type": "datetime"
793
+ },
794
+ {
795
+ "aggregatable": true,
796
+ "custom": false,
797
+ "defaultValue": null,
798
+ "extraTypeInfo": null,
799
+ "filterable": true,
800
+ "groupable": true,
801
+ "inlineHelpText": null,
802
+ "label": "Created By ID",
803
+ "name": "CreatedById",
804
+ "nillable": false,
805
+ "picklistValues": [],
806
+ "referenceTo": [
807
+ "User"
808
+ ],
809
+ "relationshipName": "CreatedBy",
810
+ "sortable": true,
811
+ "type": "reference"
812
+ },
813
+ {
814
+ "aggregatable": true,
815
+ "custom": false,
816
+ "defaultValue": null,
817
+ "extraTypeInfo": null,
818
+ "filterable": true,
819
+ "groupable": false,
820
+ "inlineHelpText": null,
821
+ "label": "Last Modified Date",
822
+ "name": "LastModifiedDate",
823
+ "nillable": false,
824
+ "picklistValues": [],
825
+ "referenceTo": [],
826
+ "relationshipName": null,
827
+ "sortable": true,
828
+ "type": "datetime"
829
+ },
830
+ {
831
+ "aggregatable": true,
832
+ "custom": false,
833
+ "defaultValue": null,
834
+ "extraTypeInfo": null,
835
+ "filterable": true,
836
+ "groupable": true,
837
+ "inlineHelpText": null,
838
+ "label": "Last Modified By ID",
839
+ "name": "LastModifiedById",
840
+ "nillable": false,
841
+ "picklistValues": [],
842
+ "referenceTo": [
843
+ "User"
844
+ ],
845
+ "relationshipName": "LastModifiedBy",
846
+ "sortable": true,
847
+ "type": "reference"
848
+ },
849
+ {
850
+ "aggregatable": true,
851
+ "custom": false,
852
+ "defaultValue": null,
853
+ "extraTypeInfo": null,
854
+ "filterable": true,
855
+ "groupable": false,
856
+ "inlineHelpText": null,
857
+ "label": "System Modstamp",
858
+ "name": "SystemModstamp",
859
+ "nillable": false,
860
+ "picklistValues": [],
861
+ "referenceTo": [],
862
+ "relationshipName": null,
863
+ "sortable": true,
864
+ "type": "datetime"
865
+ },
866
+ {
867
+ "aggregatable": true,
868
+ "custom": false,
869
+ "defaultValue": null,
870
+ "extraTypeInfo": null,
871
+ "filterable": true,
872
+ "groupable": true,
873
+ "inlineHelpText": null,
874
+ "label": "Last Activity",
875
+ "name": "LastActivityDate",
876
+ "nillable": true,
877
+ "picklistValues": [],
878
+ "referenceTo": [],
879
+ "relationshipName": null,
880
+ "sortable": true,
881
+ "type": "date"
882
+ },
883
+ {
884
+ "aggregatable": true,
885
+ "custom": false,
886
+ "defaultValue": null,
887
+ "extraTypeInfo": null,
888
+ "filterable": true,
889
+ "groupable": false,
890
+ "inlineHelpText": null,
891
+ "label": "Last Viewed Date",
892
+ "name": "LastViewedDate",
893
+ "nillable": true,
894
+ "picklistValues": [],
895
+ "referenceTo": [],
896
+ "relationshipName": null,
897
+ "sortable": true,
898
+ "type": "datetime"
899
+ },
900
+ {
901
+ "aggregatable": true,
902
+ "custom": false,
903
+ "defaultValue": null,
904
+ "extraTypeInfo": null,
905
+ "filterable": true,
906
+ "groupable": false,
907
+ "inlineHelpText": null,
908
+ "label": "Last Referenced Date",
909
+ "name": "LastReferencedDate",
910
+ "nillable": true,
911
+ "picklistValues": [],
912
+ "referenceTo": [],
913
+ "relationshipName": null,
914
+ "sortable": true,
915
+ "type": "datetime"
916
+ }
917
+ ],
918
+ "label": "Contract",
919
+ "childRelationships": [
920
+ {
921
+ "cascadeDelete": true,
922
+ "childSObject": "AIInsightValue",
923
+ "deprecatedAndHidden": false,
924
+ "field": "SobjectLookupValueId",
925
+ "junctionIdListNames": [],
926
+ "junctionReferenceTo": [],
927
+ "relationshipName": null,
928
+ "restrictedDelete": false
929
+ },
930
+ {
931
+ "cascadeDelete": true,
932
+ "childSObject": "AIRecordInsight",
933
+ "deprecatedAndHidden": false,
934
+ "field": "TargetId",
935
+ "junctionIdListNames": [],
936
+ "junctionReferenceTo": [],
937
+ "relationshipName": null,
938
+ "restrictedDelete": false
939
+ },
940
+ {
941
+ "cascadeDelete": true,
942
+ "childSObject": "ActivityHistory",
943
+ "deprecatedAndHidden": false,
944
+ "field": "WhatId",
945
+ "junctionIdListNames": [],
946
+ "junctionReferenceTo": [],
947
+ "relationshipName": "ActivityHistories",
948
+ "restrictedDelete": false
949
+ },
950
+ {
951
+ "cascadeDelete": true,
952
+ "childSObject": "AttachedContentDocument",
953
+ "deprecatedAndHidden": false,
954
+ "field": "LinkedEntityId",
955
+ "junctionIdListNames": [],
956
+ "junctionReferenceTo": [],
957
+ "relationshipName": "AttachedContentDocuments",
958
+ "restrictedDelete": false
959
+ },
960
+ {
961
+ "cascadeDelete": true,
962
+ "childSObject": "Attachment",
963
+ "deprecatedAndHidden": false,
964
+ "field": "ParentId",
965
+ "junctionIdListNames": [],
966
+ "junctionReferenceTo": [],
967
+ "relationshipName": "Attachments",
968
+ "restrictedDelete": false
969
+ },
970
+ {
971
+ "cascadeDelete": true,
972
+ "childSObject": "CollaborationGroupRecord",
973
+ "deprecatedAndHidden": false,
974
+ "field": "RecordId",
975
+ "junctionIdListNames": [],
976
+ "junctionReferenceTo": [],
977
+ "relationshipName": "RecordAssociatedGroups",
978
+ "restrictedDelete": false
979
+ },
980
+ {
981
+ "cascadeDelete": true,
982
+ "childSObject": "CombinedAttachment",
983
+ "deprecatedAndHidden": false,
984
+ "field": "ParentId",
985
+ "junctionIdListNames": [],
986
+ "junctionReferenceTo": [],
987
+ "relationshipName": "CombinedAttachments",
988
+ "restrictedDelete": false
989
+ },
990
+ {
991
+ "cascadeDelete": true,
992
+ "childSObject": "ContentDocumentLink",
993
+ "deprecatedAndHidden": false,
994
+ "field": "LinkedEntityId",
995
+ "junctionIdListNames": [],
996
+ "junctionReferenceTo": [],
997
+ "relationshipName": "ContentDocumentLinks",
998
+ "restrictedDelete": false
999
+ },
1000
+ {
1001
+ "cascadeDelete": false,
1002
+ "childSObject": "ContentDocumentLinkChangeEvent",
1003
+ "deprecatedAndHidden": false,
1004
+ "field": "LinkedEntityId",
1005
+ "junctionIdListNames": [],
1006
+ "junctionReferenceTo": [],
1007
+ "relationshipName": null,
1008
+ "restrictedDelete": false
1009
+ },
1010
+ {
1011
+ "cascadeDelete": false,
1012
+ "childSObject": "ContentVersion",
1013
+ "deprecatedAndHidden": false,
1014
+ "field": "FirstPublishLocationId",
1015
+ "junctionIdListNames": [],
1016
+ "junctionReferenceTo": [],
1017
+ "relationshipName": null,
1018
+ "restrictedDelete": false
1019
+ },
1020
+ {
1021
+ "cascadeDelete": false,
1022
+ "childSObject": "ContentVersionChangeEvent",
1023
+ "deprecatedAndHidden": false,
1024
+ "field": "FirstPublishLocationId",
1025
+ "junctionIdListNames": [],
1026
+ "junctionReferenceTo": [],
1027
+ "relationshipName": null,
1028
+ "restrictedDelete": false
1029
+ },
1030
+ {
1031
+ "cascadeDelete": true,
1032
+ "childSObject": "ContractContactRole",
1033
+ "deprecatedAndHidden": false,
1034
+ "field": "ContractId",
1035
+ "junctionIdListNames": [],
1036
+ "junctionReferenceTo": [],
1037
+ "relationshipName": "ContractContactRoles",
1038
+ "restrictedDelete": false
1039
+ },
1040
+ {
1041
+ "cascadeDelete": true,
1042
+ "childSObject": "ContractFeed",
1043
+ "deprecatedAndHidden": false,
1044
+ "field": "ParentId",
1045
+ "junctionIdListNames": [],
1046
+ "junctionReferenceTo": [],
1047
+ "relationshipName": "Feeds",
1048
+ "restrictedDelete": false
1049
+ },
1050
+ {
1051
+ "cascadeDelete": true,
1052
+ "childSObject": "ContractHistory",
1053
+ "deprecatedAndHidden": false,
1054
+ "field": "ContractId",
1055
+ "junctionIdListNames": [],
1056
+ "junctionReferenceTo": [],
1057
+ "relationshipName": "Histories",
1058
+ "restrictedDelete": false
1059
+ },
1060
+ {
1061
+ "cascadeDelete": false,
1062
+ "childSObject": "EmailMessage",
1063
+ "deprecatedAndHidden": false,
1064
+ "field": "RelatedToId",
1065
+ "junctionIdListNames": [],
1066
+ "junctionReferenceTo": [],
1067
+ "relationshipName": "Emails",
1068
+ "restrictedDelete": false
1069
+ },
1070
+ {
1071
+ "cascadeDelete": false,
1072
+ "childSObject": "EmailMessageChangeEvent",
1073
+ "deprecatedAndHidden": false,
1074
+ "field": "RelatedToId",
1075
+ "junctionIdListNames": [],
1076
+ "junctionReferenceTo": [],
1077
+ "relationshipName": null,
1078
+ "restrictedDelete": false
1079
+ },
1080
+ {
1081
+ "cascadeDelete": true,
1082
+ "childSObject": "EntitySubscription",
1083
+ "deprecatedAndHidden": false,
1084
+ "field": "ParentId",
1085
+ "junctionIdListNames": [],
1086
+ "junctionReferenceTo": [],
1087
+ "relationshipName": "FeedSubscriptionsForEntity",
1088
+ "restrictedDelete": false
1089
+ },
1090
+ {
1091
+ "cascadeDelete": true,
1092
+ "childSObject": "Event",
1093
+ "deprecatedAndHidden": false,
1094
+ "field": "WhatId",
1095
+ "junctionIdListNames": [],
1096
+ "junctionReferenceTo": [],
1097
+ "relationshipName": "Events",
1098
+ "restrictedDelete": false
1099
+ },
1100
+ {
1101
+ "cascadeDelete": false,
1102
+ "childSObject": "EventChangeEvent",
1103
+ "deprecatedAndHidden": false,
1104
+ "field": "WhatId",
1105
+ "junctionIdListNames": [],
1106
+ "junctionReferenceTo": [],
1107
+ "relationshipName": null,
1108
+ "restrictedDelete": false
1109
+ },
1110
+ {
1111
+ "cascadeDelete": false,
1112
+ "childSObject": "EventRelationChangeEvent",
1113
+ "deprecatedAndHidden": false,
1114
+ "field": "RelationId",
1115
+ "junctionIdListNames": [],
1116
+ "junctionReferenceTo": [],
1117
+ "relationshipName": null,
1118
+ "restrictedDelete": false
1119
+ },
1120
+ {
1121
+ "cascadeDelete": false,
1122
+ "childSObject": "FeedComment",
1123
+ "deprecatedAndHidden": false,
1124
+ "field": "ParentId",
1125
+ "junctionIdListNames": [],
1126
+ "junctionReferenceTo": [],
1127
+ "relationshipName": null,
1128
+ "restrictedDelete": false
1129
+ },
1130
+ {
1131
+ "cascadeDelete": true,
1132
+ "childSObject": "FeedItem",
1133
+ "deprecatedAndHidden": false,
1134
+ "field": "ParentId",
1135
+ "junctionIdListNames": [],
1136
+ "junctionReferenceTo": [],
1137
+ "relationshipName": null,
1138
+ "restrictedDelete": false
1139
+ },
1140
+ {
1141
+ "cascadeDelete": false,
1142
+ "childSObject": "FlowExecutionErrorEvent",
1143
+ "deprecatedAndHidden": false,
1144
+ "field": "ContextRecordId",
1145
+ "junctionIdListNames": [],
1146
+ "junctionReferenceTo": [],
1147
+ "relationshipName": null,
1148
+ "restrictedDelete": false
1149
+ },
1150
+ {
1151
+ "cascadeDelete": false,
1152
+ "childSObject": "FlowOrchestrationWorkItem",
1153
+ "deprecatedAndHidden": false,
1154
+ "field": "RelatedRecordId",
1155
+ "junctionIdListNames": [],
1156
+ "junctionReferenceTo": [],
1157
+ "relationshipName": null,
1158
+ "restrictedDelete": false
1159
+ },
1160
+ {
1161
+ "cascadeDelete": false,
1162
+ "childSObject": "FlowRecordRelation",
1163
+ "deprecatedAndHidden": false,
1164
+ "field": "RelatedRecordId",
1165
+ "junctionIdListNames": [],
1166
+ "junctionReferenceTo": [],
1167
+ "relationshipName": null,
1168
+ "restrictedDelete": false
1169
+ },
1170
+ {
1171
+ "cascadeDelete": true,
1172
+ "childSObject": "Note",
1173
+ "deprecatedAndHidden": false,
1174
+ "field": "ParentId",
1175
+ "junctionIdListNames": [],
1176
+ "junctionReferenceTo": [],
1177
+ "relationshipName": "Notes",
1178
+ "restrictedDelete": false
1179
+ },
1180
+ {
1181
+ "cascadeDelete": true,
1182
+ "childSObject": "NoteAndAttachment",
1183
+ "deprecatedAndHidden": false,
1184
+ "field": "ParentId",
1185
+ "junctionIdListNames": [],
1186
+ "junctionReferenceTo": [],
1187
+ "relationshipName": "NotesAndAttachments",
1188
+ "restrictedDelete": false
1189
+ },
1190
+ {
1191
+ "cascadeDelete": true,
1192
+ "childSObject": "OpenActivity",
1193
+ "deprecatedAndHidden": false,
1194
+ "field": "WhatId",
1195
+ "junctionIdListNames": [],
1196
+ "junctionReferenceTo": [],
1197
+ "relationshipName": "OpenActivities",
1198
+ "restrictedDelete": false
1199
+ },
1200
+ {
1201
+ "cascadeDelete": true,
1202
+ "childSObject": "Order",
1203
+ "deprecatedAndHidden": false,
1204
+ "field": "ContractId",
1205
+ "junctionIdListNames": [],
1206
+ "junctionReferenceTo": [],
1207
+ "relationshipName": "Orders",
1208
+ "restrictedDelete": false
1209
+ },
1210
+ {
1211
+ "cascadeDelete": false,
1212
+ "childSObject": "OrderChangeEvent",
1213
+ "deprecatedAndHidden": false,
1214
+ "field": "ContractId",
1215
+ "junctionIdListNames": [],
1216
+ "junctionReferenceTo": [],
1217
+ "relationshipName": null,
1218
+ "restrictedDelete": false
1219
+ },
1220
+ {
1221
+ "cascadeDelete": false,
1222
+ "childSObject": "OutgoingEmail",
1223
+ "deprecatedAndHidden": false,
1224
+ "field": "RelatedToId",
1225
+ "junctionIdListNames": [],
1226
+ "junctionReferenceTo": [],
1227
+ "relationshipName": null,
1228
+ "restrictedDelete": false
1229
+ },
1230
+ {
1231
+ "cascadeDelete": true,
1232
+ "childSObject": "ProcessInstance",
1233
+ "deprecatedAndHidden": false,
1234
+ "field": "TargetObjectId",
1235
+ "junctionIdListNames": [],
1236
+ "junctionReferenceTo": [],
1237
+ "relationshipName": "ProcessInstances",
1238
+ "restrictedDelete": false
1239
+ },
1240
+ {
1241
+ "cascadeDelete": false,
1242
+ "childSObject": "ProcessInstanceHistory",
1243
+ "deprecatedAndHidden": false,
1244
+ "field": "TargetObjectId",
1245
+ "junctionIdListNames": [],
1246
+ "junctionReferenceTo": [],
1247
+ "relationshipName": "ProcessSteps",
1248
+ "restrictedDelete": false
1249
+ },
1250
+ {
1251
+ "cascadeDelete": true,
1252
+ "childSObject": "RecordAction",
1253
+ "deprecatedAndHidden": false,
1254
+ "field": "RecordId",
1255
+ "junctionIdListNames": [],
1256
+ "junctionReferenceTo": [],
1257
+ "relationshipName": "RecordActions",
1258
+ "restrictedDelete": false
1259
+ },
1260
+ {
1261
+ "cascadeDelete": false,
1262
+ "childSObject": "RecordActionHistory",
1263
+ "deprecatedAndHidden": false,
1264
+ "field": "ParentRecordId",
1265
+ "junctionIdListNames": [],
1266
+ "junctionReferenceTo": [],
1267
+ "relationshipName": "RecordActionHistories",
1268
+ "restrictedDelete": false
1269
+ },
1270
+ {
1271
+ "cascadeDelete": true,
1272
+ "childSObject": "Task",
1273
+ "deprecatedAndHidden": false,
1274
+ "field": "WhatId",
1275
+ "junctionIdListNames": [],
1276
+ "junctionReferenceTo": [],
1277
+ "relationshipName": "Tasks",
1278
+ "restrictedDelete": false
1279
+ },
1280
+ {
1281
+ "cascadeDelete": false,
1282
+ "childSObject": "TaskChangeEvent",
1283
+ "deprecatedAndHidden": false,
1284
+ "field": "WhatId",
1285
+ "junctionIdListNames": [],
1286
+ "junctionReferenceTo": [],
1287
+ "relationshipName": null,
1288
+ "restrictedDelete": false
1289
+ },
1290
+ {
1291
+ "cascadeDelete": true,
1292
+ "childSObject": "TopicAssignment",
1293
+ "deprecatedAndHidden": false,
1294
+ "field": "EntityId",
1295
+ "junctionIdListNames": [],
1296
+ "junctionReferenceTo": [],
1297
+ "relationshipName": "TopicAssignments",
1298
+ "restrictedDelete": false
1299
+ }
1300
+ ],
1301
+ "custom": false,
1302
+ "name": "Contract",
1303
+ "queryable": true
1304
+ }