multiwoven-integrations 0.1.47 → 0.1.48

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,2041 +2,5 @@
2
2
  "request_rate_limit": 100000,
3
3
  "request_rate_limit_unit": "day",
4
4
  "request_rate_concurrency": 10,
5
- "streams": [
6
- {
7
- "name": "Account",
8
- "action": "create",
9
- "json_schema": {
10
- "$schema": "http://json-schema.org/draft-07/schema#",
11
- "title": "Account",
12
- "type": "object",
13
- "additionalProperties": true,
14
- "properties": {
15
- "Id": { "type": "string" },
16
- "IsDeleted": { "type": "boolean" },
17
- "MasterRecordId": { "type": ["string", "null"] },
18
- "Name": { "type": "string" },
19
- "Type": {
20
- "type": ["array", "null"],
21
- "items": { "type": "string" },
22
- "enum": [
23
- "Analyst",
24
- "Competitor",
25
- "Customer",
26
- "Integrator",
27
- "Investor",
28
- "Partner",
29
- "Press",
30
- "Prospect",
31
- "Reseller",
32
- "Other"
33
- ]
34
- },
35
- "RecordTypeId": { "type": ["string", "null"] },
36
- "ParentId": { "type": ["string", "null"] },
37
- "BillingStreet": { "type": ["string", "null"] },
38
- "BillingCity": { "type": ["string", "null"] },
39
- "BillingState": { "type": ["string", "null"] },
40
- "BillingPostalCode": { "type": ["string", "null"] },
41
- "BillingCountry": { "type": ["string", "null"] },
42
- "BillingLatitude": { "type": ["number", "null"] },
43
- "BillingLongitude": { "type": ["number", "null"] },
44
- "BillingGeocodeAccuracy": {
45
- "type": ["array", "null"],
46
- "items": { "type": "string" },
47
- "enum": [
48
- "Address",
49
- "NearAddress",
50
- "Block",
51
- "Street",
52
- "ExtendedZip",
53
- "Zip",
54
- "Neighborhood",
55
- "City",
56
- "County",
57
- "State",
58
- "Unknown"
59
- ]
60
- },
61
- "BillingAddress": { "type": ["string", "null"] },
62
- "ShippingStreet": { "type": ["string", "null"] },
63
- "ShippingCity": { "type": ["string", "null"] },
64
- "ShippingState": { "type": ["string", "null"] },
65
- "ShippingPostalCode": { "type": ["string", "null"] },
66
- "ShippingCountry": { "type": ["string", "null"] },
67
- "ShippingLatitude": { "type": ["number", "null"] },
68
- "ShippingLongitude": { "type": ["number", "null"] },
69
- "ShippingGeocodeAccuracy": {
70
- "type": ["array", "null"],
71
- "items": { "type": "string" },
72
- "enum": [
73
- "Address",
74
- "NearAddress",
75
- "Block",
76
- "Street",
77
- "ExtendedZip",
78
- "Zip",
79
- "Neighborhood",
80
- "City",
81
- "County",
82
- "State",
83
- "Unknown"
84
- ]
85
- },
86
- "ShippingAddress": { "type": ["string", "null"] },
87
- "Phone": { "type": ["string", "null"] },
88
- "Fax": { "type": ["string", "null"] },
89
- "AccountNumber": { "type": ["string", "null"] },
90
- "Website": { "type": ["string", "null"] },
91
- "PhotoUrl": { "type": ["string", "null"] },
92
- "Industry": {
93
- "type": ["array", "null"],
94
- "items": { "type": "string" },
95
- "enum": [
96
- "Agriculture",
97
- "Apparel",
98
- "Banking",
99
- "Biotechnology",
100
- "Chemicals",
101
- "Communications",
102
- "Construction",
103
- "Consulting",
104
- "Education",
105
- "Electronics",
106
- "Energy",
107
- "Engineering",
108
- "Entertainment",
109
- "Environmental",
110
- "Finance",
111
- "Food & Beverage",
112
- "Government",
113
- "Healthcare",
114
- "Hospitality",
115
- "Insurance",
116
- "Machinery",
117
- "Manufacturing",
118
- "Media",
119
- "Not For Profit",
120
- "Other",
121
- "Recreation",
122
- "Retail",
123
- "Shipping",
124
- "Technology",
125
- "Telecommunications",
126
- "Transportation",
127
- "Utilities"
128
- ]
129
- },
130
- "AnnualRevenue": { "type": ["string", "null"] },
131
- "NumberOfEmployees": { "type": ["integer", "null"] },
132
- "Ownership": {
133
- "type": ["array", "null"],
134
- "items": { "type": "string" },
135
- "enum": ["Public", "Private", "Subsidiary", "Other"]
136
- },
137
- "Description": { "type": ["string", "null"] },
138
- "OwnerId": { "type": "string" },
139
- "CreatedDate": { "type": "string", "format": "date-time" },
140
- "CreatedById": { "type": "string" },
141
- "LastModifiedDate": { "type": "string", "format": "date-time" },
142
- "LastModifiedById": { "type": "string" },
143
- "SystemModstamp": { "type": "string", "format": "date-time" },
144
- "LastActivityDate": { "type": ["string", "null"], "format": "date" },
145
- "LastViewedDate": {
146
- "type": ["string", "null"],
147
- "format": "date-time"
148
- },
149
- "LastReferencedDate": {
150
- "type": ["string", "null"],
151
- "format": "date-time"
152
- },
153
- "Jigsaw": { "type": ["string", "null"] },
154
- "JigsawCompanyId": { "type": ["string", "null"] },
155
- "AccountSource": {
156
- "type": ["array", "null"],
157
- "items": { "type": "string" },
158
- "enum": [
159
- "Advertisement",
160
- "Employee Referral",
161
- "External Referral",
162
- "Partner",
163
- "Public Relations",
164
- "Seminar - Internal",
165
- "Seminar - Partner",
166
- "Trade Show",
167
- "Web",
168
- "Word of mouth",
169
- "Other"
170
- ]
171
- },
172
- "SicDesc": { "type": ["string", "null"] },
173
- "OperatingHoursId": { "type": ["string", "null"] },
174
- "cgcloud__Account_Email__c": { "type": ["string", "null"] },
175
- "cgcloud__Account_Number__c": { "type": ["string", "null"] },
176
- "cgcloud__Account_Template__c": { "type": ["string", "null"] },
177
- "cgcloud__ExternalId__c": { "type": ["string", "null"] },
178
- "cgcloud__Name_2__c": { "type": ["string", "null"] },
179
- "cgcloud__Number_Of_Extensions__c": { "type": ["number", "null"] },
180
- "cgcloud__Account_Template_Description__c": {
181
- "type": ["string", "null"]
182
- },
183
- "cgcloud__Sales_Org__c": { "type": ["string", "null"] },
184
- "bofc__BOFC_ACC_Name__c": { "type": ["string", "null"] }
185
- }
186
- },
187
- "required": ["Name"],
188
- "supported_sync_modes": ["incremental"],
189
- "source_defined_cursor": true,
190
- "default_cursor_field": ["updated"],
191
- "source_defined_primary_key": [[]]
192
- },
193
- {
194
- "name": "User",
195
- "action": "create",
196
- "json_schema": {
197
- "$schema": "http://json-schema.org/draft-07/schema#",
198
- "title": "User",
199
- "type": "object",
200
- "additionalProperties": true,
201
- "properties": {
202
- "Id": { "type": "string" },
203
- "Username": { "type": "string" },
204
- "LastName": { "type": "string" },
205
- "FirstName": { "type": ["string", "null"] },
206
- "Name": { "type": "string" },
207
- "CompanyName": { "type": ["string", "null"] },
208
- "Division": { "type": ["string", "null"] },
209
- "Department": { "type": ["string", "null"] },
210
- "Title": { "type": ["string", "null"] },
211
- "Street": { "type": ["string", "null"] },
212
- "City": { "type": ["string", "null"] },
213
- "State": { "type": ["string", "null"] },
214
- "PostalCode": { "type": ["string", "null"] },
215
- "Country": { "type": ["string", "null"] },
216
- "Latitude": { "type": ["number", "null"] },
217
- "Longitude": { "type": ["number", "null"] },
218
- "GeocodeAccuracy": {
219
- "type": ["array", "null"],
220
- "items": { "type": "string" },
221
- "enum": [
222
- "Address",
223
- "NearAddress",
224
- "Block",
225
- "Street",
226
- "ExtendedZip",
227
- "Zip",
228
- "Neighborhood",
229
- "City",
230
- "County",
231
- "State",
232
- "Unknown"
233
- ]
234
- },
235
- "Address": { "type": ["string", "null"] },
236
- "Email": { "type": "string" },
237
- "EmailPreferencesAutoBcc": { "type": "boolean" },
238
- "EmailPreferencesAutoBccStayInTouch": { "type": "boolean" },
239
- "EmailPreferencesStayInTouchReminder": { "type": "boolean" },
240
- "SenderEmail": { "type": ["string", "null"] },
241
- "SenderName": { "type": ["string", "null"] },
242
- "Signature": { "type": ["string", "null"] },
243
- "StayInTouchSubject": { "type": ["string", "null"] },
244
- "StayInTouchSignature": { "type": ["string", "null"] },
245
- "StayInTouchNote": { "type": ["string", "null"] },
246
- "Phone": { "type": ["string", "null"] },
247
- "Fax": { "type": ["string", "null"] },
248
- "MobilePhone": { "type": ["string", "null"] },
249
- "Alias": { "type": "string" },
250
- "CommunityNickname": { "type": "string" },
251
- "BadgeText": { "type": ["string", "null"] },
252
- "IsActive": { "type": "boolean" },
253
- "TimeZoneSidKey": {
254
- "type": "array",
255
- "items": { "type": "string" },
256
- "enum": [
257
- "Pacific/Kiritimati",
258
- "Pacific/Chatham",
259
- "Antarctica/McMurdo",
260
- "Pacific/Apia",
261
- "Pacific/Auckland",
262
- "Pacific/Enderbury",
263
- "Pacific/Fakaofo",
264
- "Pacific/Tongatapu",
265
- "Asia/Anadyr",
266
- "Asia/Kamchatka",
267
- "Pacific/Fiji",
268
- "Pacific/Funafuti",
269
- "Pacific/Kwajalein",
270
- "Pacific/Majuro",
271
- "Pacific/Nauru",
272
- "Pacific/Norfolk",
273
- "Pacific/Tarawa",
274
- "Pacific/Wake",
275
- "Pacific/Wallis",
276
- "Antarctica/Casey",
277
- "Antarctica/Macquarie",
278
- "Asia/Magadan",
279
- "Asia/Sakhalin",
280
- "Asia/Srednekolymsk",
281
- "Australia/Currie",
282
- "Australia/Hobart",
283
- "Australia/Lord_Howe",
284
- "Australia/Melbourne",
285
- "Australia/Sydney",
286
- "Pacific/Bougainville",
287
- "Pacific/Efate",
288
- "Pacific/Guadalcanal",
289
- "Pacific/Kosrae",
290
- "Pacific/Noumea",
291
- "Pacific/Ponape",
292
- "Australia/Adelaide",
293
- "Australia/Broken_Hill",
294
- "Antarctica/DumontDUrville",
295
- "Asia/Ust-Nera",
296
- "Asia/Vladivostok",
297
- "Australia/Brisbane",
298
- "Australia/Lindeman",
299
- "Pacific/Guam",
300
- "Pacific/Port_Moresby",
301
- "Pacific/Saipan",
302
- "Pacific/Truk",
303
- "Australia/Darwin",
304
- "Asia/Chita",
305
- "Asia/Dili",
306
- "Asia/Jayapura",
307
- "Asia/Khandyga",
308
- "Asia/Seoul",
309
- "Asia/Tokyo",
310
- "Asia/Yakutsk",
311
- "Pacific/Palau",
312
- "Australia/Eucla",
313
- "Asia/Brunei",
314
- "Asia/Choibalsan",
315
- "Asia/Hong_Kong",
316
- "Asia/Irkutsk",
317
- "Asia/Kuala_Lumpur",
318
- "Asia/Kuching",
319
- "Asia/Macau",
320
- "Asia/Makassar",
321
- "Asia/Manila",
322
- "Asia/Shanghai",
323
- "Asia/Singapore",
324
- "Asia/Taipei",
325
- "Asia/Ulaanbaatar",
326
- "Australia/Perth",
327
- "Antarctica/Davis",
328
- "Asia/Bangkok",
329
- "Asia/Barnaul",
330
- "Asia/Ho_Chi_Minh",
331
- "Asia/Hovd",
332
- "Asia/Jakarta",
333
- "Asia/Krasnoyarsk",
334
- "Asia/Novokuznetsk",
335
- "Asia/Novosibirsk",
336
- "Asia/Phnom_Penh",
337
- "Asia/Pontianak",
338
- "Asia/Tomsk",
339
- "Asia/Vientiane",
340
- "Indian/Christmas",
341
- "Asia/Rangoon",
342
- "Indian/Cocos",
343
- "Antarctica/Vostok",
344
- "Asia/Almaty",
345
- "Asia/Bishkek",
346
- "Asia/Dhaka",
347
- "Asia/Omsk",
348
- "Asia/Qostanay",
349
- "Asia/Thimphu",
350
- "Asia/Urumqi",
351
- "Indian/Chagos",
352
- "Asia/Kathmandu",
353
- "Asia/Colombo",
354
- "Asia/Kolkata",
355
- "Antarctica/Mawson",
356
- "Asia/Aqtau",
357
- "Asia/Aqtobe",
358
- "Asia/Ashgabat",
359
- "Asia/Atyrau",
360
- "Asia/Dushanbe",
361
- "Asia/Karachi",
362
- "Asia/Oral",
363
- "Asia/Qyzylorda",
364
- "Asia/Samarkand",
365
- "Asia/Tashkent",
366
- "Asia/Yekaterinburg",
367
- "Indian/Kerguelen",
368
- "Indian/Maldives",
369
- "Asia/Kabul",
370
- "Asia/Baku",
371
- "Asia/Dubai",
372
- "Asia/Muscat",
373
- "Asia/Tbilisi",
374
- "Asia/Yerevan",
375
- "Europe/Astrakhan",
376
- "Europe/Samara",
377
- "Europe/Saratov",
378
- "Europe/Ulyanovsk",
379
- "Indian/Mahe",
380
- "Indian/Mauritius",
381
- "Indian/Reunion",
382
- "Africa/Addis_Ababa",
383
- "Africa/Asmera",
384
- "Africa/Dar_es_Salaam",
385
- "Africa/Djibouti",
386
- "Africa/Kampala",
387
- "Africa/Mogadishu",
388
- "Africa/Nairobi",
389
- "Antarctica/Syowa",
390
- "Asia/Aden",
391
- "Asia/Amman",
392
- "Asia/Baghdad",
393
- "Asia/Bahrain",
394
- "Asia/Kuwait",
395
- "Asia/Qatar",
396
- "Asia/Riyadh",
397
- "Europe/Istanbul",
398
- "Europe/Kirov",
399
- "Europe/Minsk",
400
- "Europe/Moscow",
401
- "Europe/Volgograd",
402
- "Indian/Antananarivo",
403
- "Indian/Comoro",
404
- "Indian/Mayotte",
405
- "Africa/Blantyre",
406
- "Africa/Bujumbura",
407
- "Africa/Cairo",
408
- "Africa/Gaborone",
409
- "Africa/Harare",
410
- "Africa/Johannesburg",
411
- "Africa/Juba",
412
- "Africa/Kigali",
413
- "Africa/Lubumbashi",
414
- "Africa/Lusaka",
415
- "Africa/Maputo",
416
- "Africa/Maseru",
417
- "Africa/Mbabane",
418
- "Africa/Tripoli",
419
- "Africa/Windhoek",
420
- "Asia/Beirut",
421
- "Asia/Famagusta",
422
- "Asia/Gaza",
423
- "Asia/Hebron",
424
- "Asia/Jerusalem",
425
- "Asia/Nicosia",
426
- "Europe/Athens",
427
- "Europe/Bucharest",
428
- "Europe/Chisinau",
429
- "Europe/Helsinki",
430
- "Europe/Kaliningrad",
431
- "Europe/Kiev",
432
- "Europe/Mariehamn",
433
- "Europe/Riga",
434
- "Europe/Sofia",
435
- "Europe/Tallinn",
436
- "Europe/Uzhgorod",
437
- "Europe/Vilnius",
438
- "Europe/Zaporozhye",
439
- "Africa/Algiers",
440
- "Africa/Bangui",
441
- "Africa/Brazzaville",
442
- "Africa/Ceuta",
443
- "Africa/Douala",
444
- "Africa/Kinshasa",
445
- "Africa/Lagos",
446
- "Africa/Libreville",
447
- "Africa/Luanda",
448
- "Africa/Malabo",
449
- "Africa/Ndjamena",
450
- "Africa/Niamey",
451
- "Africa/Porto-Novo",
452
- "Africa/Tunis",
453
- "Arctic/Longyearbyen",
454
- "Europe/Amsterdam",
455
- "Europe/Andorra",
456
- "Europe/Belgrade",
457
- "Europe/Berlin",
458
- "Europe/Bratislava",
459
- "Europe/Brussels",
460
- "Europe/Budapest",
461
- "Europe/Busingen",
462
- "Europe/Copenhagen",
463
- "Europe/Gibraltar",
464
- "Europe/Ljubljana",
465
- "Europe/Luxembourg",
466
- "Europe/Madrid",
467
- "Europe/Malta",
468
- "Europe/Monaco",
469
- "Europe/Oslo",
470
- "Europe/Paris",
471
- "Europe/Podgorica",
472
- "Europe/Prague",
473
- "Europe/Rome",
474
- "Europe/San_Marino",
475
- "Europe/Sarajevo",
476
- "Europe/Skopje",
477
- "Europe/Stockholm",
478
- "Europe/Tirane",
479
- "Europe/Vaduz",
480
- "Europe/Vatican",
481
- "Europe/Vienna",
482
- "Europe/Warsaw",
483
- "Europe/Zagreb",
484
- "Europe/Zurich",
485
- "Africa/Abidjan",
486
- "Africa/Accra",
487
- "Africa/Bamako",
488
- "Africa/Banjul",
489
- "Africa/Bissau",
490
- "Africa/Casablanca",
491
- "Africa/Conakry",
492
- "Africa/Dakar",
493
- "Africa/El_Aaiun",
494
- "Africa/Freetown",
495
- "Africa/Lome",
496
- "Africa/Monrovia",
497
- "Africa/Nouakchott",
498
- "Africa/Ouagadougou",
499
- "Africa/Sao_Tome",
500
- "America/Danmarkshavn",
501
- "Antarctica/Troll",
502
- "Atlantic/Canary",
503
- "Atlantic/Faeroe",
504
- "Atlantic/Madeira",
505
- "Atlantic/Reykjavik",
506
- "Atlantic/St_Helena",
507
- "Europe/Dublin",
508
- "Europe/Guernsey",
509
- "Europe/Isle_of_Man",
510
- "Europe/Jersey",
511
- "Europe/Lisbon",
512
- "Europe/London",
513
- "GMT",
514
- "America/Scoresbysund",
515
- "Atlantic/Azores",
516
- "Atlantic/Cape_Verde",
517
- "America/Godthab",
518
- "America/Miquelon",
519
- "America/Noronha",
520
- "Atlantic/South_Georgia",
521
- "America/St_Johns",
522
- "America/Araguaina",
523
- "America/Argentina/Buenos_Aires",
524
- "America/Argentina/La_Rioja",
525
- "America/Argentina/Rio_Gallegos",
526
- "America/Argentina/Salta",
527
- "America/Argentina/San_Juan",
528
- "America/Argentina/San_Luis",
529
- "America/Argentina/Tucuman",
530
- "America/Argentina/Ushuaia",
531
- "America/Asuncion",
532
- "America/Bahia",
533
- "America/Belem",
534
- "America/Catamarca",
535
- "America/Cayenne",
536
- "America/Cordoba",
537
- "America/Fortaleza",
538
- "America/Glace_Bay",
539
- "America/Goose_Bay",
540
- "America/Halifax",
541
- "America/Jujuy",
542
- "America/Maceio",
543
- "America/Mendoza",
544
- "America/Moncton",
545
- "America/Montevideo",
546
- "America/Paramaribo",
547
- "America/Punta_Arenas",
548
- "America/Recife",
549
- "America/Santarem",
550
- "America/Santiago",
551
- "America/Sao_Paulo",
552
- "America/Thule",
553
- "Antarctica/Palmer",
554
- "Antarctica/Rothera",
555
- "Atlantic/Bermuda",
556
- "Atlantic/Stanley",
557
- "America/Anguilla",
558
- "America/Antigua",
559
- "America/Aruba",
560
- "America/Barbados",
561
- "America/Blanc-Sablon",
562
- "America/Boa_Vista",
563
- "America/Campo_Grande",
564
- "America/Caracas",
565
- "America/Cuiaba",
566
- "America/Curacao",
567
- "America/Detroit",
568
- "America/Dominica",
569
- "America/Grand_Turk",
570
- "America/Grenada",
571
- "America/Guadeloupe",
572
- "America/Guyana",
573
- "America/Indiana/Indianapolis",
574
- "America/Indiana/Marengo",
575
- "America/Indiana/Petersburg",
576
- "America/Indiana/Vevay",
577
- "America/Indiana/Vincennes",
578
- "America/Indiana/Winamac",
579
- "America/Iqaluit",
580
- "America/Kentucky/Monticello",
581
- "America/Kralendijk",
582
- "America/La_Paz",
583
- "America/Louisville",
584
- "America/Lower_Princes",
585
- "America/Manaus",
586
- "America/Marigot",
587
- "America/Martinique",
588
- "America/Montreal",
589
- "America/Montserrat",
590
- "America/Nassau",
591
- "America/New_York",
592
- "America/Nipigon",
593
- "America/Pangnirtung",
594
- "America/Port-au-Prince",
595
- "America/Port_of_Spain",
596
- "America/Porto_Velho",
597
- "America/Puerto_Rico",
598
- "America/Santo_Domingo",
599
- "America/St_Barthelemy",
600
- "America/St_Kitts",
601
- "America/St_Lucia",
602
- "America/St_Thomas",
603
- "America/St_Vincent",
604
- "America/Thunder_Bay",
605
- "America/Toronto",
606
- "America/Tortola",
607
- "America/Bogota",
608
- "America/Cancun",
609
- "America/Cayman",
610
- "America/Chicago",
611
- "America/Coral_Harbour",
612
- "America/Eirunepe",
613
- "America/Guayaquil",
614
- "America/Indiana/Knox",
615
- "America/Indiana/Tell_City",
616
- "America/Jamaica",
617
- "America/Lima",
618
- "America/Matamoros",
619
- "America/Menominee",
620
- "America/North_Dakota/Beulah",
621
- "America/North_Dakota/Center",
622
- "America/North_Dakota/New_Salem",
623
- "America/Ojinaga",
624
- "America/Panama",
625
- "America/Rainy_River",
626
- "America/Rankin_Inlet",
627
- "America/Resolute",
628
- "America/Rio_Branco",
629
- "America/Winnipeg",
630
- "Pacific/Easter",
631
- "America/Bahia_Banderas",
632
- "America/Belize",
633
- "America/Boise",
634
- "America/Cambridge_Bay",
635
- "America/Chihuahua",
636
- "America/Costa_Rica",
637
- "America/Denver",
638
- "America/Edmonton",
639
- "America/El_Salvador",
640
- "America/Guatemala",
641
- "America/Inuvik",
642
- "America/Managua",
643
- "America/Merida",
644
- "America/Mexico_City",
645
- "America/Monterrey",
646
- "America/Regina",
647
- "America/Swift_Current",
648
- "America/Tegucigalpa",
649
- "America/Yellowknife",
650
- "Pacific/Galapagos",
651
- "America/Creston",
652
- "America/Dawson",
653
- "America/Dawson_Creek",
654
- "America/Fort_Nelson",
655
- "America/Hermosillo",
656
- "America/Los_Angeles",
657
- "America/Mazatlan",
658
- "America/Phoenix",
659
- "America/Santa_Isabel",
660
- "America/Tijuana",
661
- "America/Vancouver",
662
- "America/Whitehorse",
663
- "America/Anchorage",
664
- "America/Juneau",
665
- "America/Metlakatla",
666
- "America/Nome",
667
- "America/Sitka",
668
- "America/Yakutat",
669
- "Pacific/Pitcairn",
670
- "America/Adak",
671
- "Pacific/Gambier",
672
- "Pacific/Marquesas",
673
- "Pacific/Honolulu",
674
- "Pacific/Johnston",
675
- "Pacific/Rarotonga",
676
- "Pacific/Tahiti",
677
- "Pacific/Midway",
678
- "Pacific/Niue",
679
- "Pacific/Pago_Pago"
680
- ]
681
- },
682
- "UserRoleId": { "type": ["string", "null"] },
683
- "LocaleSidKey": {
684
- "type": "array",
685
- "items": { "type": "string" },
686
- "enum": [
687
- "af_ZA",
688
- "sq_AL",
689
- "am_ET",
690
- "ar_DZ",
691
- "ar_BH",
692
- "ar_EG",
693
- "ar_IQ",
694
- "ar_JO",
695
- "ar_KW",
696
- "ar_LB",
697
- "ar_LY",
698
- "ar_MA",
699
- "ar_OM",
700
- "ar_QA",
701
- "ar_SA",
702
- "ar_TN",
703
- "ar_AE",
704
- "ar_YE",
705
- "hy_AM",
706
- "az_AZ",
707
- "bn_BD",
708
- "bn_IN",
709
- "eu_ES",
710
- "be_BY",
711
- "bs_BA",
712
- "bg_BG",
713
- "my_MM",
714
- "ca_ES",
715
- "zh_CN_PINYIN",
716
- "zh_CN_STROKE",
717
- "zh_CN",
718
- "zh_HK_STROKE",
719
- "zh_HK",
720
- "zh_MO",
721
- "zh_MY",
722
- "zh_SG",
723
- "zh_TW_STROKE",
724
- "zh_TW",
725
- "hr_HR",
726
- "cs_CZ",
727
- "da_DK",
728
- "nl_AW",
729
- "nl_BE",
730
- "nl_NL",
731
- "nl_SR",
732
- "dz_BT",
733
- "en_AG",
734
- "en_AU",
735
- "en_BS",
736
- "en_BB",
737
- "en_BE",
738
- "en_BZ",
739
- "en_BM",
740
- "en_BW",
741
- "en_CM",
742
- "en_CA",
743
- "en_KY",
744
- "en_CY",
745
- "en_ER",
746
- "en_SZ",
747
- "en_FK",
748
- "en_FJ",
749
- "en_GM",
750
- "en_DE",
751
- "en_GH",
752
- "en_GI",
753
- "en_GY",
754
- "en_HK",
755
- "en_IN",
756
- "en_ID",
757
- "en_IE",
758
- "en_IL",
759
- "en_IT",
760
- "en_JM",
761
- "en_KE",
762
- "en_LR",
763
- "en_MG",
764
- "en_MW",
765
- "en_MY",
766
- "en_MT",
767
- "en_MU",
768
- "en_NA",
769
- "en_NL",
770
- "en_NZ",
771
- "en_NG",
772
- "en_PK",
773
- "en_PG",
774
- "en_PH",
775
- "en_RW",
776
- "en_WS",
777
- "en_SC",
778
- "en_SL",
779
- "en_SG",
780
- "en_SX",
781
- "en_SB",
782
- "en_ZA",
783
- "en_SH",
784
- "en_TZ",
785
- "en_TO",
786
- "en_TT",
787
- "en_UG",
788
- "en_AE",
789
- "en_GB",
790
- "en_US",
791
- "en_VU",
792
- "et_EE",
793
- "fi_FI",
794
- "fr_BE",
795
- "fr_CA",
796
- "fr_KM",
797
- "fr_FR",
798
- "fr_GN",
799
- "fr_HT",
800
- "fr_LU",
801
- "fr_MR",
802
- "fr_MC",
803
- "fr_MA",
804
- "fr_CH",
805
- "fr_WF",
806
- "ka_GE",
807
- "de_AT",
808
- "de_BE",
809
- "de_DE",
810
- "de_LU",
811
- "de_CH",
812
- "el_CY",
813
- "el_GR",
814
- "gu_IN",
815
- "ht_HT",
816
- "ht_US",
817
- "haw_US",
818
- "iw_IL",
819
- "hi_IN",
820
- "hmn_US",
821
- "hu_HU",
822
- "is_IS",
823
- "in_ID",
824
- "ga_IE",
825
- "it_IT",
826
- "it_CH",
827
- "ja_JP",
828
- "kl_GL",
829
- "kn_IN",
830
- "kk_KZ",
831
- "km_KH",
832
- "ko_KR",
833
- "ky_KG",
834
- "lo_LA",
835
- "lv_LV",
836
- "lt_LT",
837
- "lu_CD",
838
- "lb_LU",
839
- "mk_MK",
840
- "ms_BN",
841
- "ms_MY",
842
- "ml_IN",
843
- "mt_MT",
844
- "mr_IN",
845
- "sh_ME",
846
- "ne_NP",
847
- "no_NO",
848
- "ps_AF",
849
- "pl_PL",
850
- "pt_AO",
851
- "pt_BR",
852
- "pt_CV",
853
- "pt_MZ",
854
- "pt_PT",
855
- "pt_ST",
856
- "pa_IN",
857
- "ro_MD",
858
- "ro_RO",
859
- "rm_CH",
860
- "rn_BI",
861
- "ru_AM",
862
- "ru_BY",
863
- "ru_KZ",
864
- "ru_KG",
865
- "ru_LT",
866
- "ru_MD",
867
- "ru_PL",
868
- "ru_RU",
869
- "ru_UA",
870
- "sm_WS",
871
- "sm_US",
872
- "sr_BA",
873
- "sr_CS",
874
- "sh_BA",
875
- "sh_CS",
876
- "sr_RS",
877
- "sk_SK",
878
- "sl_SI",
879
- "so_DJ",
880
- "so_SO",
881
- "es_AR",
882
- "es_BO",
883
- "es_CL",
884
- "es_CO",
885
- "es_CR",
886
- "es_DO",
887
- "es_EC",
888
- "es_SV",
889
- "es_GT",
890
- "es_HN",
891
- "es_MX",
892
- "es_NI",
893
- "es_PA",
894
- "es_PY",
895
- "es_PE",
896
- "es_PR",
897
- "es_ES",
898
- "es_US",
899
- "es_UY",
900
- "es_VE",
901
- "sw_KE",
902
- "sv_SE",
903
- "tl_PH",
904
- "tg_TJ",
905
- "ta_IN",
906
- "ta_LK",
907
- "te_IN",
908
- "mi_NZ",
909
- "th_TH",
910
- "ti_ET",
911
- "tr_TR",
912
- "uk_UA",
913
- "ur_PK",
914
- "uz_LATN_UZ",
915
- "vi_VN",
916
- "cy_GB",
917
- "xh_ZA",
918
- "ji_US",
919
- "yo_BJ",
920
- "zu_ZA"
921
- ]
922
- },
923
- "ReceivesInfoEmails": { "type": "boolean" },
924
- "ReceivesAdminInfoEmails": { "type": "boolean" },
925
- "EmailEncodingKey": {
926
- "type": "array",
927
- "items": { "type": "string" },
928
- "enum": [
929
- "UTF-8",
930
- "ISO-8859-1",
931
- "Shift_JIS",
932
- "ISO-2022-JP",
933
- "EUC-JP",
934
- "ks_c_5601-1987",
935
- "Big5",
936
- "GB2312",
937
- "Big5-HKSCS",
938
- "x-SJIS_0213"
939
- ]
940
- },
941
- "ProfileId": { "type": "string" },
942
- "UserType": {
943
- "type": ["array", "null"],
944
- "items": { "type": "string" },
945
- "enum": [
946
- "Standard",
947
- "PowerPartner",
948
- "PowerCustomerSuccess",
949
- "CustomerSuccess",
950
- "Guest",
951
- "CspLitePortal",
952
- "CsnOnly",
953
- "SelfService"
954
- ]
955
- },
956
- "LanguageLocaleKey": {
957
- "type": "array",
958
- "items": { "type": "string" },
959
- "enum": [
960
- "en_US",
961
- "de",
962
- "es",
963
- "fr",
964
- "it",
965
- "ja",
966
- "sv",
967
- "ko",
968
- "zh_TW",
969
- "zh_CN",
970
- "pt_BR",
971
- "nl_NL",
972
- "da",
973
- "th",
974
- "fi",
975
- "ru",
976
- "es_MX",
977
- "no"
978
- ]
979
- },
980
- "EmployeeNumber": { "type": ["string", "null"] },
981
- "DelegatedApproverId": { "type": ["string", "null"] },
982
- "ManagerId": { "type": ["string", "null"] },
983
- "LastLoginDate": {
984
- "type": ["string", "null"],
985
- "format": "date-time"
986
- },
987
- "LastPasswordChangeDate": {
988
- "type": ["string", "null"],
989
- "format": "date-time"
990
- },
991
- "CreatedDate": { "type": "string", "format": "date-time" },
992
- "CreatedById": { "type": "string" },
993
- "LastModifiedDate": { "type": "string", "format": "date-time" },
994
- "LastModifiedById": { "type": "string" },
995
- "SystemModstamp": { "type": "string", "format": "date-time" },
996
- "NumberOfFailedLogins": { "type": ["integer", "null"] },
997
- "OfflineTrialExpirationDate": {
998
- "type": ["string", "null"],
999
- "format": "date-time"
1000
- },
1001
- "OfflinePdaTrialExpirationDate": {
1002
- "type": ["string", "null"],
1003
- "format": "date-time"
1004
- },
1005
- "UserPermissionsMarketingUser": { "type": "boolean" },
1006
- "UserPermissionsOfflineUser": { "type": "boolean" },
1007
- "UserPermissionsAvantgoUser": { "type": "boolean" },
1008
- "UserPermissionsCallCenterAutoLogin": { "type": "boolean" },
1009
- "UserPermissionsSFContentUser": { "type": "boolean" },
1010
- "UserPermissionsKnowledgeUser": { "type": "boolean" },
1011
- "UserPermissionsInteractionUser": { "type": "boolean" },
1012
- "UserPermissionsSupportUser": { "type": "boolean" },
1013
- "ForecastEnabled": { "type": "boolean" },
1014
- "UserPreferencesActivityRemindersPopup": { "type": "boolean" },
1015
- "UserPreferencesEventRemindersCheckboxDefault": { "type": "boolean" },
1016
- "UserPreferencesTaskRemindersCheckboxDefault": { "type": "boolean" },
1017
- "UserPreferencesReminderSoundOff": { "type": "boolean" },
1018
- "UserPreferencesDisableAllFeedsEmail": { "type": "boolean" },
1019
- "UserPreferencesDisableFollowersEmail": { "type": "boolean" },
1020
- "UserPreferencesDisableProfilePostEmail": { "type": "boolean" },
1021
- "UserPreferencesDisableChangeCommentEmail": { "type": "boolean" },
1022
- "UserPreferencesDisableLaterCommentEmail": { "type": "boolean" },
1023
- "UserPreferencesDisProfPostCommentEmail": { "type": "boolean" },
1024
- "UserPreferencesContentNoEmail": { "type": "boolean" },
1025
- "UserPreferencesContentEmailAsAndWhen": { "type": "boolean" },
1026
- "UserPreferencesApexPagesDeveloperMode": { "type": "boolean" },
1027
- "UserPreferencesReceiveNoNotificationsAsApprover": {
1028
- "type": "boolean"
1029
- },
1030
- "UserPreferencesReceiveNotificationsAsDelegatedApprover": {
1031
- "type": "boolean"
1032
- },
1033
- "UserPreferencesHideCSNGetChatterMobileTask": { "type": "boolean" },
1034
- "UserPreferencesDisableMentionsPostEmail": { "type": "boolean" },
1035
- "UserPreferencesDisMentionsCommentEmail": { "type": "boolean" },
1036
- "UserPreferencesHideCSNDesktopTask": { "type": "boolean" },
1037
- "UserPreferencesHideChatterOnboardingSplash": { "type": "boolean" },
1038
- "UserPreferencesHideSecondChatterOnboardingSplash": {
1039
- "type": "boolean"
1040
- },
1041
- "UserPreferencesDisCommentAfterLikeEmail": { "type": "boolean" },
1042
- "UserPreferencesDisableLikeEmail": { "type": "boolean" },
1043
- "UserPreferencesSortFeedByComment": { "type": "boolean" },
1044
- "UserPreferencesDisableMessageEmail": { "type": "boolean" },
1045
- "UserPreferencesAgentGdprConsent": { "type": "boolean" },
1046
- "UserPreferencesDisableBookmarkEmail": { "type": "boolean" },
1047
- "UserPreferencesDisableSharePostEmail": { "type": "boolean" },
1048
- "UserPreferencesEnableAutoSubForFeeds": { "type": "boolean" },
1049
- "UserPreferencesDisableFileShareNotificationsForApi": {
1050
- "type": "boolean"
1051
- },
1052
- "UserPreferencesShowTitleToExternalUsers": { "type": "boolean" },
1053
- "UserPreferencesShowManagerToExternalUsers": { "type": "boolean" },
1054
- "UserPreferencesShowEmailToExternalUsers": { "type": "boolean" },
1055
- "UserPreferencesShowWorkPhoneToExternalUsers": { "type": "boolean" },
1056
- "UserPreferencesShowMobilePhoneToExternalUsers": {
1057
- "type": "boolean"
1058
- },
1059
- "UserPreferencesShowFaxToExternalUsers": { "type": "boolean" },
1060
- "UserPreferencesShowStreetAddressToExternalUsers": {
1061
- "type": "boolean"
1062
- },
1063
- "UserPreferencesShowCityToExternalUsers": { "type": "boolean" },
1064
- "UserPreferencesShowStateToExternalUsers": { "type": "boolean" },
1065
- "UserPreferencesShowPostalCodeToExternalUsers": { "type": "boolean" },
1066
- "UserPreferencesShowCountryToExternalUsers": { "type": "boolean" },
1067
- "UserPreferencesShowProfilePicToGuestUsers": { "type": "boolean" },
1068
- "UserPreferencesShowTitleToGuestUsers": { "type": "boolean" },
1069
- "UserPreferencesShowCityToGuestUsers": { "type": "boolean" },
1070
- "UserPreferencesShowStateToGuestUsers": { "type": "boolean" },
1071
- "UserPreferencesShowPostalCodeToGuestUsers": { "type": "boolean" },
1072
- "UserPreferencesShowCountryToGuestUsers": { "type": "boolean" },
1073
- "UserPreferencesShowForecastingChangeSignals": { "type": "boolean" },
1074
- "UserPreferencesLiveAgentMiawSetupDeflection": { "type": "boolean" },
1075
- "UserPreferencesHideS1BrowserUI": { "type": "boolean" },
1076
- "UserPreferencesDisableEndorsementEmail": { "type": "boolean" },
1077
- "UserPreferencesPathAssistantCollapsed": { "type": "boolean" },
1078
- "UserPreferencesCacheDiagnostics": { "type": "boolean" },
1079
- "UserPreferencesShowEmailToGuestUsers": { "type": "boolean" },
1080
- "UserPreferencesShowManagerToGuestUsers": { "type": "boolean" },
1081
- "UserPreferencesShowWorkPhoneToGuestUsers": { "type": "boolean" },
1082
- "UserPreferencesShowMobilePhoneToGuestUsers": { "type": "boolean" },
1083
- "UserPreferencesShowFaxToGuestUsers": { "type": "boolean" },
1084
- "UserPreferencesShowStreetAddressToGuestUsers": { "type": "boolean" },
1085
- "UserPreferencesLightningExperiencePreferred": { "type": "boolean" },
1086
- "UserPreferencesPreviewLightning": { "type": "boolean" },
1087
- "UserPreferencesHideEndUserOnboardingAssistantModal": {
1088
- "type": "boolean"
1089
- },
1090
- "UserPreferencesHideLightningMigrationModal": { "type": "boolean" },
1091
- "UserPreferencesHideSfxWelcomeMat": { "type": "boolean" },
1092
- "UserPreferencesHideBiggerPhotoCallout": { "type": "boolean" },
1093
- "UserPreferencesGlobalNavBarWTShown": { "type": "boolean" },
1094
- "UserPreferencesGlobalNavGridMenuWTShown": { "type": "boolean" },
1095
- "UserPreferencesCreateLEXAppsWTShown": { "type": "boolean" },
1096
- "UserPreferencesFavoritesWTShown": { "type": "boolean" },
1097
- "UserPreferencesRecordHomeSectionCollapseWTShown": {
1098
- "type": "boolean"
1099
- },
1100
- "UserPreferencesRecordHomeReservedWTShown": { "type": "boolean" },
1101
- "UserPreferencesFavoritesShowTopFavorites": { "type": "boolean" },
1102
- "UserPreferencesExcludeMailAppAttachments": { "type": "boolean" },
1103
- "UserPreferencesSuppressTaskSFXReminders": { "type": "boolean" },
1104
- "UserPreferencesSuppressEventSFXReminders": { "type": "boolean" },
1105
- "UserPreferencesPreviewCustomTheme": { "type": "boolean" },
1106
- "UserPreferencesHasCelebrationBadge": { "type": "boolean" },
1107
- "UserPreferencesUserDebugModePref": { "type": "boolean" },
1108
- "UserPreferencesSRHOverrideActivities": { "type": "boolean" },
1109
- "UserPreferencesNewLightningReportRunPageEnabled": {
1110
- "type": "boolean"
1111
- },
1112
- "UserPreferencesReverseOpenActivitiesView": { "type": "boolean" },
1113
- "UserPreferencesHasSentWarningEmail": { "type": "boolean" },
1114
- "UserPreferencesHasSentWarningEmail238": { "type": "boolean" },
1115
- "UserPreferencesHasSentWarningEmail240": { "type": "boolean" },
1116
- "UserPreferencesNativeEmailClient": { "type": "boolean" },
1117
- "UserPreferencesHideBrowseProductRedirectConfirmation": {
1118
- "type": "boolean"
1119
- },
1120
- "UserPreferencesHideOnlineSalesAppWelcomeMat": { "type": "boolean" },
1121
- "UserPreferencesShowForecastingRoundedAmounts": { "type": "boolean" },
1122
- "ContactId": { "type": ["string", "null"] },
1123
- "AccountId": { "type": ["string", "null"] },
1124
- "CallCenterId": { "type": ["string", "null"] },
1125
- "Extension": { "type": ["string", "null"] },
1126
- "FederationIdentifier": { "type": ["string", "null"] },
1127
- "AboutMe": { "type": ["string", "null"] },
1128
- "FullPhotoUrl": { "type": ["string", "null"] },
1129
- "SmallPhotoUrl": { "type": ["string", "null"] },
1130
- "IsExtIndicatorVisible": { "type": "boolean" },
1131
- "OutOfOfficeMessage": { "type": ["string", "null"] },
1132
- "MediumPhotoUrl": { "type": ["string", "null"] },
1133
- "DigestFrequency": {
1134
- "type": "array",
1135
- "items": { "type": "string" },
1136
- "enum": ["D", "W", "N"]
1137
- },
1138
- "DefaultGroupNotificationFrequency": {
1139
- "type": "array",
1140
- "items": { "type": "string" },
1141
- "enum": ["P", "D", "W", "N"]
1142
- },
1143
- "LastViewedDate": {
1144
- "type": ["string", "null"],
1145
- "format": "date-time"
1146
- },
1147
- "LastReferencedDate": {
1148
- "type": ["string", "null"],
1149
- "format": "date-time"
1150
- },
1151
- "BannerPhotoUrl": { "type": ["string", "null"] },
1152
- "SmallBannerPhotoUrl": { "type": ["string", "null"] },
1153
- "MediumBannerPhotoUrl": { "type": ["string", "null"] },
1154
- "IsProfilePhotoActive": { "type": "boolean" },
1155
- "IndividualId": { "type": ["string", "null"] },
1156
- "cgcloud__Language_Postfix__c": { "type": ["string", "null"] },
1157
- "cgcloud__Mobility_Sales_Org__c": {
1158
- "type": ["array", "null"],
1159
- "items": { "type": "string" },
1160
- "enum": ["0001", "0002", "0003", "0000"]
1161
- },
1162
- "cgcloud__Sales_Org__c": {
1163
- "type": ["array", "null"],
1164
- "items": { "type": "string" },
1165
- "enum": ["0001", "0002", "0003", "0000"]
1166
- }
1167
- }
1168
- },
1169
- "required": ["Name"],
1170
- "supported_sync_modes": ["incremental"],
1171
- "source_defined_cursor": true,
1172
- "default_cursor_field": ["updated"],
1173
- "source_defined_primary_key": [[]]
1174
- },
1175
- {
1176
- "name": "RetailStore",
1177
- "action": "create",
1178
- "json_schema": {
1179
- "$schema": "http://json-schema.org/draft-07/schema#",
1180
- "title": "RetailStore",
1181
- "type": "object",
1182
- "additionalProperties": true,
1183
- "properties": {
1184
- "Id": { "type": "string" },
1185
- "OwnerId": { "type": "string" },
1186
- "IsDeleted": { "type": "boolean" },
1187
- "Name": { "type": "string" },
1188
- "CreatedDate": { "type": "string", "format": "date-time" },
1189
- "CreatedById": { "type": "string" },
1190
- "LastModifiedDate": { "type": "string", "format": "date-time" },
1191
- "LastModifiedById": { "type": "string" },
1192
- "SystemModstamp": { "type": "string", "format": "date-time" },
1193
- "LastViewedDate": {
1194
- "type": ["string", "null"],
1195
- "format": "date-time"
1196
- },
1197
- "LastReferencedDate": {
1198
- "type": ["string", "null"],
1199
- "format": "date-time"
1200
- },
1201
- "AccountId": { "type": "string" },
1202
- "RetailLocationGroupId": { "type": ["string", "null"] },
1203
- "PrimaryContactId": { "type": ["string", "null"] },
1204
- "OperatingHoursId": { "type": ["string", "null"] },
1205
- "PreferredVisitHoursId": { "type": ["string", "null"] },
1206
- "RecommendedVisitFrequency": { "type": ["integer", "null"] },
1207
- "RecommendedVisitFrequencyType": {
1208
- "type": ["array", "null"],
1209
- "items": { "type": "string" },
1210
- "enum": ["Day", "Week", "Month"]
1211
- },
1212
- "Priority": {
1213
- "type": ["array", "null"],
1214
- "items": { "type": "string" },
1215
- "enum": ["High", "Medium", "Low"]
1216
- },
1217
- "StoreType": {
1218
- "type": ["array", "null"],
1219
- "items": { "type": "string" },
1220
- "enum": [
1221
- "Regular Store",
1222
- "Flagship Store",
1223
- "Virtual Store",
1224
- "Van Store"
1225
- ]
1226
- },
1227
- "LocationId": { "type": ["string", "null"] },
1228
- "Description": { "type": ["string", "null"] },
1229
- "DeliveryFrequencyType": {
1230
- "type": ["array", "null"],
1231
- "items": { "type": "string" },
1232
- "enum": ["Daily", "Weekly", "Monthly"]
1233
- },
1234
- "DeliveryFrequency": { "type": ["integer", "null"] },
1235
- "DeliveryMethod": {
1236
- "type": ["array", "null"],
1237
- "items": { "type": "string" },
1238
- "enum": ["Van", "Truck"]
1239
- },
1240
- "PaymentMethod": {
1241
- "type": ["array", "null"],
1242
- "items": { "type": "string" },
1243
- "enum": ["Cash", "Credit", "Check"]
1244
- },
1245
- "Street": { "type": ["string", "null"] },
1246
- "City": { "type": ["string", "null"] },
1247
- "State": { "type": ["string", "null"] },
1248
- "PostalCode": { "type": ["string", "null"] },
1249
- "Country": { "type": ["string", "null"] },
1250
- "Latitude": { "type": ["number", "null"] },
1251
- "Longitude": { "type": ["number", "null"] },
1252
- "GeocodeAccuracy": {
1253
- "type": ["array", "null"],
1254
- "items": { "type": "string" },
1255
- "enum": [
1256
- "Address",
1257
- "NearAddress",
1258
- "Block",
1259
- "Street",
1260
- "ExtendedZip",
1261
- "Zip",
1262
- "Neighborhood",
1263
- "City",
1264
- "County",
1265
- "State",
1266
- "Unknown"
1267
- ]
1268
- },
1269
- "Address": { "type": ["string", "null"] }
1270
- }
1271
- },
1272
- "required": ["Name", "AccountId"],
1273
- "supported_sync_modes": ["incremental"],
1274
- "source_defined_cursor": true,
1275
- "default_cursor_field": ["updated"],
1276
- "source_defined_primary_key": [[]]
1277
- },
1278
- {
1279
- "name": "Visit",
1280
- "action": "create",
1281
- "json_schema": {
1282
- "$schema": "http://json-schema.org/draft-07/schema#",
1283
- "title": "Visit",
1284
- "type": "object",
1285
- "additionalProperties": true,
1286
- "properties": {
1287
- "Id": { "type": "string" },
1288
- "OwnerId": { "type": "string" },
1289
- "IsDeleted": { "type": "boolean" },
1290
- "Name": { "type": "string" },
1291
- "RecordTypeId": { "type": ["string", "null"] },
1292
- "CreatedDate": { "type": "string", "format": "date-time" },
1293
- "CreatedById": { "type": "string" },
1294
- "LastModifiedDate": { "type": "string", "format": "date-time" },
1295
- "LastModifiedById": { "type": "string" },
1296
- "SystemModstamp": { "type": "string", "format": "date-time" },
1297
- "LastViewedDate": {
1298
- "type": ["string", "null"],
1299
- "format": "date-time"
1300
- },
1301
- "LastReferencedDate": {
1302
- "type": ["string", "null"],
1303
- "format": "date-time"
1304
- },
1305
- "PlaceId": { "type": "string" },
1306
- "LocationId": { "type": ["string", "null"] },
1307
- "AddressId": { "type": ["string", "null"] },
1308
- "RetailStoreId": { "type": ["string", "null"] },
1309
- "VisitPriority": {
1310
- "type": ["array", "null"],
1311
- "items": { "type": "string" },
1312
- "enum": ["High", "Medium", "Low"]
1313
- },
1314
- "Status": {
1315
- "type": "array",
1316
- "items": { "type": "string" },
1317
- "enum": [
1318
- "Planned",
1319
- "InProgress",
1320
- "Completed",
1321
- "Abandoned",
1322
- "Unscheduled",
1323
- "None",
1324
- "Error"
1325
- ]
1326
- },
1327
- "PlannedVisitStartTime": { "type": "string", "format": "date-time" },
1328
- "PlannedVisitEndTime": {
1329
- "type": ["string", "null"],
1330
- "format": "date-time"
1331
- },
1332
- "ActualVisitStartTime": {
1333
- "type": ["string", "null"],
1334
- "format": "date-time"
1335
- },
1336
- "ActualVisitEndTime": {
1337
- "type": ["string", "null"],
1338
- "format": "date-time"
1339
- },
1340
- "StatusRemarks": { "type": ["string", "null"] },
1341
- "InstructionDescription": { "type": ["string", "null"] },
1342
- "VisitorId": { "type": ["string", "null"] },
1343
- "UserId": { "type": ["string", "null"] },
1344
- "ServiceResourceId": { "type": ["string", "null"] },
1345
- "ContactId": { "type": ["string", "null"] },
1346
- "ContextId": { "type": ["string", "null"] },
1347
- "AccountId": { "type": ["string", "null"] },
1348
- "cgcloud__Account_City__c": { "type": ["string", "null"] },
1349
- "cgcloud__Account_Street__c": { "type": ["string", "null"] },
1350
- "cgcloud__Accountable__c": { "type": ["string", "null"] },
1351
- "cgcloud__Completed_Date__c": {
1352
- "type": ["string", "null"],
1353
- "format": "date"
1354
- },
1355
- "cgcloud__Completion_Date__c": {
1356
- "type": ["string", "null"],
1357
- "format": "date-time"
1358
- },
1359
- "cgcloud__Creation_Date_and_Time__c": {
1360
- "type": ["string", "null"],
1361
- "format": "date-time"
1362
- },
1363
- "cgcloud__Creation_Mode__c": {
1364
- "type": ["array", "null"],
1365
- "items": { "type": "string" },
1366
- "enum": ["Manually", "Automatically"]
1367
- },
1368
- "cgcloud__Date_mock__c": {
1369
- "type": ["string", "null"],
1370
- "format": "date"
1371
- },
1372
- "cgcloud__Distribution_Issue__c": { "type": ["number", "null"] },
1373
- "cgcloud__Distribution_Issues__c": { "type": "boolean" },
1374
- "cgcloud__Distribution_Rate_All__c": { "type": ["number", "null"] },
1375
- "cgcloud__Distribution_Rate_Focus__c": { "type": ["number", "null"] },
1376
- "cgcloud__Distribution_Relevant__c": { "type": "boolean" },
1377
- "cgcloud__Duration_Effective__c": { "type": ["number", "null"] },
1378
- "cgcloud__Duration_In_Minutes__c": { "type": ["number", "null"] },
1379
- "cgcloud__End_Date__c": {
1380
- "type": ["string", "null"],
1381
- "format": "date"
1382
- },
1383
- "cgcloud__Fixed_Visit_Date__c": {
1384
- "type": ["array", "null"],
1385
- "items": { "type": "string" },
1386
- "enum": ["0", "1"]
1387
- },
1388
- "cgcloud__Geolocation__Latitude__s": { "type": ["number", "null"] },
1389
- "cgcloud__Geolocation__Longitude__s": { "type": ["number", "null"] },
1390
- "cgcloud__Geolocation__c": {
1391
- "type": ["object", "null"],
1392
- "properties": {
1393
- "latitude": { "type": "number" },
1394
- "longitude": { "type": "number" }
1395
- }
1396
- },
1397
- "cgcloud__IsAllDayEvent__c": { "type": "boolean" },
1398
- "cgcloud__Location_Status__c": {
1399
- "type": ["array", "null"],
1400
- "items": { "type": "string" },
1401
- "enum": ["GPS Inactive", "No GPS Fix", "Ok"]
1402
- },
1403
- "cgcloud__Note__c": { "type": ["string", "null"] },
1404
- "cgcloud__Number_Mock__c": { "type": ["number", "null"] },
1405
- "cgcloud__OOS_Issue__c": { "type": ["number", "null"] },
1406
- "cgcloud__OOS_Issues__c": { "type": "boolean" },
1407
- "cgcloud__OOS_Rate_All__c": { "type": ["number", "null"] },
1408
- "cgcloud__OOS_Rate_Focus__c": { "type": ["number", "null"] },
1409
- "cgcloud__PSI__c": { "type": ["number", "null"] },
1410
- "cgcloud__PSQ_Rate__c": { "type": ["number", "null"] },
1411
- "cgcloud__Reason_Code__c": {
1412
- "type": ["array", "null"],
1413
- "items": { "type": "string" },
1414
- "enum": ["Unserviced", "StoreClosed", "TimeWindow", "NoManager"]
1415
- },
1416
- "cgcloud__Record_Link__c": { "type": ["string", "null"] },
1417
- "cgcloud__Responsible__c": { "type": ["string", "null"] },
1418
- "cgcloud__Start_Date__c": {
1419
- "type": ["string", "null"],
1420
- "format": "date"
1421
- },
1422
- "cgcloud__Subject__c": { "type": ["string", "null"] },
1423
- "cgcloud__Tour__c": { "type": ["string", "null"] },
1424
- "cgcloud__Update_Last_Modified_Date__c": { "type": "boolean" },
1425
- "cgcloud__Visit_Planned_Date__c": {
1426
- "type": ["string", "null"],
1427
- "format": "date"
1428
- },
1429
- "cgcloud__Visit_Template__c": { "type": ["string", "null"] },
1430
- "cgcloud__Week__c": { "type": ["number", "null"] },
1431
- "cgcloud__Subject_Formula__c": { "type": ["string", "null"] }
1432
- }
1433
- },
1434
- "required": ["Name"],
1435
- "supported_sync_modes": ["incremental"],
1436
- "source_defined_cursor": true,
1437
- "default_cursor_field": ["updated"],
1438
- "source_defined_primary_key": [[]]
1439
- },
1440
- {
1441
- "name": "RecordType",
1442
- "action": "create",
1443
- "json_schema": {
1444
- "$schema": "http://json-schema.org/draft-07/schema#",
1445
- "title": "RecordType",
1446
- "type": "object",
1447
- "additionalProperties": true,
1448
- "properties": {
1449
- "Id": { "type": "string" },
1450
- "Name": { "type": "string" },
1451
- "DeveloperName": { "type": "string" },
1452
- "NamespacePrefix": { "type": ["string", "null"] },
1453
- "Description": { "type": ["string", "null"] },
1454
- "BusinessProcessId": { "type": ["string", "null"] },
1455
- "SobjectType": {
1456
- "type": "array",
1457
- "items": { "type": "string" },
1458
- "enum": [
1459
- "Account",
1460
- "ActionCadenceAsyncJob",
1461
- "ActionPlan",
1462
- "ActionPlanItem",
1463
- "ActionPlanItemDependency",
1464
- "ActionPlanTemplate",
1465
- "ActionPlanTemplateItem",
1466
- "ActionPlanTemplateItemValue",
1467
- "ActionPlanTemplateVersion",
1468
- "ActionPlanTmplItmAssessmentInd",
1469
- "ActionPlnTmplItmDependency",
1470
- "Address",
1471
- "AgentWork",
1472
- "AIError",
1473
- "AIInsightAction",
1474
- "AIInsightFeedback",
1475
- "AIInsightReason",
1476
- "AIInsightReasonMLModelFactor",
1477
- "AIInsightSource",
1478
- "AIInsightValue",
1479
- "AIMetric",
1480
- "AIRecordInsight",
1481
- "AIState",
1482
- "AITenantProvisionedFeature",
1483
- "Announcement",
1484
- "AppAnalyticsQueryRequest",
1485
- "AssessmentIndicatorDefinition",
1486
- "AssessmentTask",
1487
- "AssessmentTaskContentDocument",
1488
- "AssessmentTaskDefinition",
1489
- "AssessmentTaskIndDefinition",
1490
- "AssessmentTaskOrder",
1491
- "Asset",
1492
- "AssetRelationship",
1493
- "AssistantProgress",
1494
- "AssistantStepProgress",
1495
- "AssociatedLocation",
1496
- "Assortment",
1497
- "AssortmentProduct",
1498
- "AttributeDefinition",
1499
- "AuthorizationForm",
1500
- "AuthorizationFormConsent",
1501
- "AuthorizationFormDataUse",
1502
- "AuthorizationFormText",
1503
- "BatchJob",
1504
- "BatchJobPart",
1505
- "BatchJobPartFailedRecord",
1506
- "bofc__BOFC_Object_Picklist__c",
1507
- "bofc__BOFC_Picklist_ValueSet__c",
1508
- "bofc__BOFC_Picklist_ValueSet_Item__c",
1509
- "bofc__BOFC_Popup__c",
1510
- "bofc__BOFCAuditHistory__c",
1511
- "bofc__BOFCAuditHistoryItem__c",
1512
- "bofc__BOFCBulkLeadConversion__c",
1513
- "bofc__BOFCCompareExport__c",
1514
- "bofc__BOFCErrorLogs__c",
1515
- "bofc__BOFCFieldsAnalyzer__c",
1516
- "bofc__BOFCFieldsAnalyzerPicklistResult__c",
1517
- "bofc__BOFCFieldsAnalyzerResult__c",
1518
- "bofc__BOFCLayoutMatrixChildObject__c",
1519
- "bofc__BOFCLayoutMatrixObject__c",
1520
- "bofc__BOFCManageRecordType__c",
1521
- "bofc__BOFCOBDetails__c",
1522
- "bofc__BOFCOBFieldsDetails__c",
1523
- "bofc__BOFCObjectLimApex__c",
1524
- "bofc__BOFCOtherthings__c",
1525
- "bofc__BOFCProcessBuilders__c",
1526
- "bofc__BOFCProcessFlowAnalyser__c",
1527
- "bofc__BOFCProfileExtract__c",
1528
- "bofc__BOFCProfileFLSDetails__c",
1529
- "bofc__BOFCReportResults__c",
1530
- "bofc__BOFCUserProfPerSet__c",
1531
- "bofc__BOFCVRules__c",
1532
- "BusinessBrand",
1533
- "CalendarModel",
1534
- "CalendarView",
1535
- "CallCtrAgentFavTrfrDest",
1536
- "Case",
1537
- "CaseExternalDocument",
1538
- "CaseRelatedIssue",
1539
- "CaseServiceProcess",
1540
- "cgc_sync__Sync_API_Log__c",
1541
- "cgc_sync__Sync_History__c",
1542
- "cgc_sync__Sync_History_Detail__c",
1543
- "cgc_sync__Sync_ID_Mapping__c",
1544
- "cgc_sync__Sync_Message__c",
1545
- "cgc_sync__Sync_Message_Translation__c",
1546
- "cgc_sync__Sync_Metadata_Changes__c",
1547
- "cgc_sync__Sync_Mobile_App_Component__c",
1548
- "cgc_sync__Sync_Mobile_App_Depl_Pkg__c",
1549
- "cgc_sync__Sync_Mobile_App_Depl_Pkg_As__c",
1550
- "cgc_sync__Sync_Mobile_App_Depl_Pkg_Inst__c",
1551
- "cgc_sync__Sync_Mobile_App_Domain__c",
1552
- "cgc_sync__Sync_Mobile_App_Installation__c",
1553
- "cgc_sync__Sync_Mobile_App_Log__c",
1554
- "cgc_sync__Sync_Mobile_App_Macro__c",
1555
- "cgc_sync__Sync_Mobile_App_PL_Map__c",
1556
- "cgc_sync__Sync_Mobile_App_PL_Map_Ext__c",
1557
- "cgc_sync__Sync_Mobile_App_PL_Repo__c",
1558
- "cgc_sync__Sync_Mobile_App_Theme__c",
1559
- "cgc_sync__Sync_Remote_Request__c",
1560
- "cgcloud__Account_Condition__c",
1561
- "cgcloud__Account_Extension__c",
1562
- "cgcloud__Account_Manager__c",
1563
- "cgcloud__Account_Org_Unit__c",
1564
- "cgcloud__Account_Plan__c",
1565
- "cgcloud__Account_Plan_Category__c",
1566
- "cgcloud__Account_Plan_Scenario__c",
1567
- "cgcloud__Account_Plan_User_Filter__c",
1568
- "cgcloud__Account_Product_Profile__c",
1569
- "cgcloud__Account_Receivable__c",
1570
- "cgcloud__Account_Relationship__c",
1571
- "cgcloud__Account_Sales_Data__c",
1572
- "cgcloud__Account_Set__c",
1573
- "cgcloud__Account_Set_Account__c",
1574
- "cgcloud__Account_Set_Manager__c",
1575
- "cgcloud__Account_Specific_Product_Condition__c",
1576
- "cgcloud__Account_Sub_Account__c",
1577
- "cgcloud__Account_Task__c",
1578
- "cgcloud__Account_Task_Template__c",
1579
- "cgcloud__Account_Template__c",
1580
- "cgcloud__Account_Trade_Org_Hierarchy__c",
1581
- "cgcloud__Account_Visit_Setting__c",
1582
- "cgcloud__Approval_Code__c",
1583
- "cgcloud__Asset_Audit__c",
1584
- "cgcloud__Asset_Template__c",
1585
- "cgcloud__Auto_Number_Sequence__c",
1586
- "cgcloud__Batch_Last_Successful_Run__c",
1587
- "cgcloud__Batch_Run_Status__c",
1588
- "cgcloud__Batch_Run_Status_Detail__c",
1589
- "cgcloud__BO_API__c",
1590
- "cgcloud__BO_API_Entity__c",
1591
- "cgcloud__BO_API_Output_Entity__c",
1592
- "cgcloud__BO_API_Step_Input_Structure__c",
1593
- "cgcloud__BO_API_Transaction_Log__c",
1594
- "cgcloud__BO_API_Workflow__c",
1595
- "cgcloud__BO_API_Workflow_Entity__c",
1596
- "cgcloud__BO_API_Workflow_Step__c",
1597
- "cgcloud__BO_API_Workflow_Workflow_Step__c",
1598
- "cgcloud__Business_Year__c",
1599
- "cgcloud__Calculation_Status__c",
1600
- "cgcloud__CGCloud_Service_Schedule__c",
1601
- "cgcloud__Condition_Search_Group__c",
1602
- "cgcloud__Condition_Search_Rule__c",
1603
- "cgcloud__Condition_Template__c",
1604
- "cgcloud__Contract__c",
1605
- "cgcloud__Contract_Payment__c",
1606
- "cgcloud__Contract_Payment_Tactic__c",
1607
- "cgcloud__Contract_Payment_Template__c",
1608
- "cgcloud__Contract_Product__c",
1609
- "cgcloud__Contract_Tactic__c",
1610
- "cgcloud__Contract_Template__c",
1611
- "cgcloud__CP_Calculation_Schema__c",
1612
- "cgcloud__CP_Calculation_Schema_Determination__c",
1613
- "cgcloud__CP_Calculation_Schema_Step__c",
1614
- "cgcloud__CP_Key_Attribute__c",
1615
- "cgcloud__CP_Key_Type__c",
1616
- "cgcloud__CP_Pricing_Condition__c",
1617
- "cgcloud__CP_Pricing_Condition_Scale_Stage__c",
1618
- "cgcloud__CP_Pricing_Condition_Stage__c",
1619
- "cgcloud__CP_Pricing_Condition_Template__c",
1620
- "cgcloud__CP_Pricing_Context_Definition__c",
1621
- "cgcloud__CP_Search_Strategy__c",
1622
- "cgcloud__CP_Search_Strategy_Step__c",
1623
- "cgcloud__Custom_Calendar__c",
1624
- "cgcloud__Custom_Period__c",
1625
- "cgcloud__Custom_Permission_User_Role_Mapping__c",
1626
- "cgcloud__Data_Type__c",
1627
- "cgcloud__Data_Type_Option__c",
1628
- "cgcloud__Field_Sales_Activity__c",
1629
- "cgcloud__Flatten_Account_Hierarchy__c",
1630
- "cgcloud__Flatten_Org_Unit_Hierarchy__c",
1631
- "cgcloud__Fund__c",
1632
- "cgcloud__Fund_Product__c",
1633
- "cgcloud__Fund_Template__c",
1634
- "cgcloud__Fund_Transaction__c",
1635
- "cgcloud__Fund_Transaction_Header__c",
1636
- "cgcloud__Fund_Transaction_Row__c",
1637
- "cgcloud__Fund_Transaction_Template__c",
1638
- "cgcloud__Historic_Product__c",
1639
- "cgcloud__Inventory__c",
1640
- "cgcloud__Inventory_Control_Template__c",
1641
- "cgcloud__Inventory_Transaction__c",
1642
- "cgcloud__Inventory_Transaction_Template__c",
1643
- "cgcloud__Job_Definition_List__c",
1644
- "cgcloud__Job_Definition_List_Account__c",
1645
- "cgcloud__Job_Definition_List_Account_Set__c",
1646
- "cgcloud__Job_Definition_List_Product__c",
1647
- "cgcloud__Job_Definition_List_Template__c",
1648
- "cgcloud__Job_Definition_Template__c",
1649
- "cgcloud__Job_DL_Job_Definition_Template__c",
1650
- "cgcloud__Job_DL_Template_Def_Template__c",
1651
- "cgcloud__Job_List__c",
1652
- "cgcloud__Job_Template__c",
1653
- "cgcloud__KPI_Definition__c",
1654
- "cgcloud__KPI_Map__c",
1655
- "cgcloud__KPI_Set__c",
1656
- "cgcloud__KPI_Set_KPI_Definition__c",
1657
- "cgcloud__Listing_Classification__c",
1658
- "cgcloud__Listing_Module__c",
1659
- "cgcloud__Metadata_Wizard_Configuration__c",
1660
- "cgcloud__Mobile_Link__c",
1661
- "cgcloud__Order__c",
1662
- "cgcloud__Order_Item__c",
1663
- "cgcloud__Order_Item_Inventory_Transaction__c",
1664
- "cgcloud__Order_Item_Order_Template_Association__c",
1665
- "cgcloud__Order_Item_Rule__c",
1666
- "cgcloud__Order_Item_Template__c",
1667
- "cgcloud__Order_Payment__c",
1668
- "cgcloud__Order_Payment_Inventory_Transaction__c",
1669
- "cgcloud__Order_Payment_Template__c",
1670
- "cgcloud__Order_Template__c",
1671
- "cgcloud__Order_Template_Order_Payment_Template__c",
1672
- "cgcloud__Order_Template_Product_Selector_Group__c",
1673
- "cgcloud__Org_Unit__c",
1674
- "cgcloud__Org_Unit_Hierarchy__c",
1675
- "cgcloud__Org_Unit_User__c",
1676
- "cgcloud__Payment__c",
1677
- "cgcloud__Payment_External_Reference__c",
1678
- "cgcloud__Payment_Tactic__c",
1679
- "cgcloud__Payment_Tactic_Fund__c",
1680
- "cgcloud__Payment_Tactic_Product__c",
1681
- "cgcloud__Payment_Tactic_Product_Manual_Input__c",
1682
- "cgcloud__Payment_Template__c",
1683
- "cgcloud__Picklist_Toggle_Addon__c",
1684
- "cgcloud__POS__c",
1685
- "cgcloud__POS_Template__c",
1686
- "cgcloud__Product_Assortment_Order_Template__c",
1687
- "cgcloud__Product_Assortment_Product_Share__c",
1688
- "cgcloud__Product_Assortment_Store__c",
1689
- "cgcloud__Product_Assortment_Template__c",
1690
- "cgcloud__Product_Category_Share__c",
1691
- "cgcloud__Product_Condition__c",
1692
- "cgcloud__Product_Hierarchy__c",
1693
- "cgcloud__Product_Listing_Module__c",
1694
- "cgcloud__Product_Part__c",
1695
- "cgcloud__Product_Template__c",
1696
- "cgcloud__Promotion__c",
1697
- "cgcloud__Promotion_Attachment__c",
1698
- "cgcloud__Promotion_Attachment_Link__c",
1699
- "cgcloud__Promotion_Hurdle__c",
1700
- "cgcloud__Promotion_Hurdle_Expression__c",
1701
- "cgcloud__Promotion_Product_Share__c",
1702
- "cgcloud__Promotion_Push_Status__c",
1703
- "cgcloud__Promotion_Reward__c",
1704
- "cgcloud__Promotion_Reward_Group__c",
1705
- "cgcloud__Promotion_Reward_Product__c",
1706
- "cgcloud__Promotion_Sales_Folder__c",
1707
- "cgcloud__Promotion_Store__c",
1708
- "cgcloud__Promotion_Template__c",
1709
- "cgcloud__Promotion_Template_Hierarchy__c",
1710
- "cgcloud__Promotion_Template_Tactic_Template__c",
1711
- "cgcloud__Rate_Based_Funding__c",
1712
- "cgcloud__RBF_Category__c",
1713
- "cgcloud__RBF_Product_Manual_Input__c",
1714
- "cgcloud__RBF_Template__c",
1715
- "cgcloud__Route__c",
1716
- "cgcloud__Route_Account__c",
1717
- "cgcloud__Route_Template__c",
1718
- "cgcloud__RTR_Report_Configuration__c",
1719
- "cgcloud__Sales_Folder__c",
1720
- "cgcloud__Sales_Folder_Sell_Sheet__c",
1721
- "cgcloud__Sales_Folder_Template__c",
1722
- "cgcloud__Sales_Organization__c",
1723
- "cgcloud__Sales_Organization_User__c",
1724
- "cgcloud__Segmentation_Rule__c",
1725
- "cgcloud__Segmentation_Rule_Def__c",
1726
- "cgcloud__Segmentation_Rule_Def_Column__c",
1727
- "cgcloud__Segmentation_Rule_Template__c",
1728
- "cgcloud__Sell_Sheet__c",
1729
- "cgcloud__Short_Code__c",
1730
- "cgcloud__Signature__c",
1731
- "cgcloud__Signature_Attribute__c",
1732
- "cgcloud__Signature_Flow_Step__c",
1733
- "cgcloud__Signature_Template__c",
1734
- "cgcloud__Substitution__c",
1735
- "cgcloud__System_Number__c",
1736
- "cgcloud__System_Number_Last__c",
1737
- "cgcloud__System_Number_Segment__c",
1738
- "cgcloud__Tactic__c",
1739
- "cgcloud__Tactic_Condition_Creation_Definition__c",
1740
- "cgcloud__Tactic_Fund__c",
1741
- "cgcloud__Tactic_Product__c",
1742
- "cgcloud__Tactic_Product_Condition__c",
1743
- "cgcloud__Tactic_Template__c",
1744
- "cgcloud__Tactic_Template_Cond_Creation_Def__c",
1745
- "cgcloud__Tactic_Template_Fund_Template__c",
1746
- "cgcloud__Tour__c",
1747
- "cgcloud__Tour_Check__c",
1748
- "cgcloud__Tour_Object_Reference__c",
1749
- "cgcloud__Tour_Template__c",
1750
- "cgcloud__Tour_Template_Object_Reference__c",
1751
- "cgcloud__Tour_Template_Tour_Check__c",
1752
- "cgcloud__Tour_Tour_Check__c",
1753
- "cgcloud__TPO_UP_Account_Category_Model__c",
1754
- "cgcloud__Transaction_Log__c",
1755
- "cgcloud__Trip_List__c",
1756
- "cgcloud__Trip_List_Account__c",
1757
- "cgcloud__UI_Contract__c",
1758
- "cgcloud__Unit_of_Measure__c",
1759
- "cgcloud__User_Accountable__c",
1760
- "cgcloud__User_Document__c",
1761
- "cgcloud__User_Document_Activity__c",
1762
- "cgcloud__User_Document_Template__c",
1763
- "cgcloud__User_Document_Template_Activity__c",
1764
- "cgcloud__User_Exit__c",
1765
- "cgcloud__User_Exit_Content__c",
1766
- "cgcloud__User_Setting__c",
1767
- "cgcloud__User_View__c",
1768
- "cgcloud__Vehicle__c",
1769
- "cgcloud__Vehicle_Warehouse__c",
1770
- "cgcloud__View__c",
1771
- "cgcloud__Visit_Job__c",
1772
- "cgcloud__Visit_Template__c",
1773
- "cgcloud__Warehouse__c",
1774
- "cgcloud__Warehouse_Product__c",
1775
- "cgcloud__Warehouse_User__c",
1776
- "cgcloud__Week_Day_Share_Profile__c",
1777
- "cgcloud__Workflow__c",
1778
- "cgcloud__Workflow_State_Transition__c",
1779
- "ChangeRequest",
1780
- "ChangeRequestRelatedIssue",
1781
- "ChangeRequestRelatedItem",
1782
- "CollabDocumentMetric",
1783
- "CollabDocumentMetricRecord",
1784
- "CollaborationGroup",
1785
- "CollaborationGroupRank",
1786
- "CollaborationGroupRecord",
1787
- "CollabTemplateMetric",
1788
- "CollabTemplateMetricRecord",
1789
- "CollabUserEngagementMetric",
1790
- "CollabUserEngmtRecordLink",
1791
- "CommerceSearchDocChangelist",
1792
- "CommerceSearchIndexInfo",
1793
- "CommerceSearchIndexLog",
1794
- "CommerceSearchIndexPayload",
1795
- "CommerceSearchResultsRule",
1796
- "CommSubscription",
1797
- "CommSubscriptionChannelType",
1798
- "CommSubscriptionConsent",
1799
- "CommSubscriptionTiming",
1800
- "ComponentResponseCache",
1801
- "Contact",
1802
- "ContactPointAddress",
1803
- "ContactPointConsent",
1804
- "ContactPointEmail",
1805
- "ContactPointPhone",
1806
- "ContactPointTypeConsent",
1807
- "ContactRequest",
1808
- "ContentBuilderChannel",
1809
- "ContentDocumentListViewMapping",
1810
- "ContentFolderDistribution",
1811
- "ContentVersion",
1812
- "Contract",
1813
- "ConvCoachingRecommendation",
1814
- "Customer",
1815
- "DataAssetSemanticGraphEdge",
1816
- "DataAssetUsageTrackingInfo",
1817
- "DataflowTriggerEvent",
1818
- "DataPrepServiceLocator",
1819
- "DataUseLegalBasis",
1820
- "DataUsePurpose",
1821
- "DeliveryTask",
1822
- "DocumentChecklistItem",
1823
- "DuplicateErrorLog",
1824
- "DuplicateRecordItem",
1825
- "DuplicateRecordSet",
1826
- "EmailThreadingToken",
1827
- "EngagementChannelType",
1828
- "Event",
1829
- "EventRelayFeedback",
1830
- "ExpressionFilter",
1831
- "ExpressionFilterCriteria",
1832
- "FileBasedDataImport",
1833
- "FileInspectionResult",
1834
- "FileSearchActivity",
1835
- "FlowExecutionEventMetric",
1836
- "FlowRecordRelation",
1837
- "FlowStageRelation",
1838
- "FlowTestResult",
1839
- "HawkingTenantProvStatus",
1840
- "Idea",
1841
- "Image",
1842
- "InboundSocialPost",
1843
- "Incident",
1844
- "IncidentRelatedItem",
1845
- "Individual",
1846
- "Insight",
1847
- "InsightUserValue",
1848
- "InStoreLocation",
1849
- "IQOpportunityEmailAddress",
1850
- "Knowledge__kav",
1851
- "Lead",
1852
- "LearningAssignment",
1853
- "LearningAssignmentProgress",
1854
- "LearningItem",
1855
- "LearningLink",
1856
- "LearningLinkProgress",
1857
- "LinkedArticle",
1858
- "ListEmail",
1859
- "ListEmailIndividualRecipient",
1860
- "ListEmailRecipientSource",
1861
- "ListEmailSentResult",
1862
- "Location",
1863
- "LocationTrustMeasure",
1864
- "Macro",
1865
- "MacroAction",
1866
- "MacroInstruction",
1867
- "MacroUsage",
1868
- "MalformedTemplateTracker",
1869
- "MessagingEndUser",
1870
- "MlAppMigrationStatus",
1871
- "MlFeatureValueMetric",
1872
- "MLMigration",
1873
- "MLModel",
1874
- "MLModelFactor",
1875
- "MLModelFactorComponent",
1876
- "MLModelMetric",
1877
- "MobileHomeConfiguration",
1878
- "NaturalLangQueryObservation",
1879
- "ObjectDataImport",
1880
- "ObjectDataImportReference",
1881
- "Opportunity",
1882
- "Order",
1883
- "OrgDeleteRequest",
1884
- "OrgMetric",
1885
- "OrgMetricScanResult",
1886
- "OrgMetricScanSummary",
1887
- "OtherComponentTask",
1888
- "PageContentAssignment",
1889
- "PartyConsent",
1890
- "PendingServiceRouting",
1891
- "PendingServiceRoutingInteractionInfo",
1892
- "PersonalizationResource",
1893
- "Pricebook2",
1894
- "Problem",
1895
- "ProblemIncident",
1896
- "ProblemRelatedItem",
1897
- "ProcessException",
1898
- "Product2",
1899
- "ProductAvailabilityProjection",
1900
- "ProductCatalog",
1901
- "ProductCategory",
1902
- "ProductCategoryProduct",
1903
- "ProductConsumed",
1904
- "ProductFulfillmentLocation",
1905
- "ProductItem",
1906
- "ProductRelatedServiceProcess",
1907
- "ProductRequest",
1908
- "ProductRequestLineItem",
1909
- "ProductRequired",
1910
- "ProductTransfer",
1911
- "ProfileSkill",
1912
- "ProfileSkillEndorsement",
1913
- "ProfileSkillUser",
1914
- "Promotion",
1915
- "PromotionChannel",
1916
- "PromotionProduct",
1917
- "PromotionProductCategory",
1918
- "PromptAction",
1919
- "PromptError",
1920
- "QuickText",
1921
- "QuickTextUsage",
1922
- "Quote",
1923
- "ReceivedDocument",
1924
- "ReceivedDocumentType",
1925
- "Recommendation",
1926
- "RecommendationReaction",
1927
- "RecommendationResponse",
1928
- "RecordAction",
1929
- "RecordAlert",
1930
- "RecordMergeHistory",
1931
- "RecordOrigin",
1932
- "RecurrenceSchedule",
1933
- "Refrigerator__c",
1934
- "ReleaseUpdateStep",
1935
- "ReleaseUpdateStepLog",
1936
- "ReportResultBlob",
1937
- "RequestsForAccessSIQ",
1938
- "RetailLocationGroup",
1939
- "RetailStore",
1940
- "RetailStoreGroupAssignment",
1941
- "RetailStoreKpi",
1942
- "RetailVisitKpi",
1943
- "ReturnOrder",
1944
- "ReturnOrderLineItem",
1945
- "SalesAgreement",
1946
- "SalesAgreementProduct",
1947
- "SalesAgreementProductSchedule",
1948
- "Scorecard",
1949
- "ScorecardAssociation",
1950
- "ScorecardMetric",
1951
- "SearchActivity",
1952
- "SearchPromotionRule",
1953
- "Seller",
1954
- "SerializedProduct",
1955
- "SerializedProductTransaction",
1956
- "ServiceResource",
1957
- "ServiceSetupProvisioning",
1958
- "SetupAssistantAnswer",
1959
- "SetupAssistantProgress",
1960
- "SetupAssistantStep",
1961
- "SetupAssttRuntimeSt",
1962
- "SetupFlowProgress",
1963
- "Shipment",
1964
- "ShipmentItem",
1965
- "SignatureTask",
1966
- "SignatureTaskLineItem",
1967
- "SiqUserBlacklist",
1968
- "SiteUserViewMode",
1969
- "SocialPost",
1970
- "SoftwareProduct",
1971
- "Solution",
1972
- "StoreActionPlanTemplate",
1973
- "StoreAssortment",
1974
- "StoreProduct",
1975
- "StrategyMonthlyStats",
1976
- "StreamActivityAccess",
1977
- "Survey",
1978
- "SurveyEngagementContext",
1979
- "SurveyInvitation",
1980
- "SurveyPage",
1981
- "SurveyQuestion",
1982
- "SurveyQuestionChoice",
1983
- "SurveyQuestionResponse",
1984
- "SurveyQuestionScore",
1985
- "SurveyResponse",
1986
- "SurveySubject",
1987
- "SurveyVersion",
1988
- "SurveyVersionAddlInfo",
1989
- "SvcCatalogReqExtdAttrVal",
1990
- "SvcCatalogRequest",
1991
- "SyncTransactionLog",
1992
- "TableauHostMapping",
1993
- "Task",
1994
- "TenantSecurityLogin",
1995
- "TenantSecurityMonitorMetric",
1996
- "TenantSecurityTenantInfo",
1997
- "UserAssistantSummary",
1998
- "UserEmailPreferredPerson",
1999
- "UserMetrics",
2000
- "UserNavItem",
2001
- "UserPrioritizedRecord",
2002
- "UserQuestionnaireAnswer",
2003
- "UserQuestionnaireSummary",
2004
- "UserServicePresence",
2005
- "VehicleUserAssignment",
2006
- "Visit",
2007
- "VisitedParty",
2008
- "Visitor",
2009
- "VoiceCall",
2010
- "VoiceChnlInteractionEvent",
2011
- "VoiceChnlIntrctnDtlEvent",
2012
- "VoiceProvisioningJob",
2013
- "WebCartDocument",
2014
- "WorkAccess",
2015
- "WorkBadge",
2016
- "WorkBadgeDefinition",
2017
- "WorkOrder",
2018
- "WorkOrderLineItem",
2019
- "WorkPlan",
2020
- "WorkPlanTemplate",
2021
- "WorkPlanTemplateEntry",
2022
- "WorkStep",
2023
- "WorkStepTemplate",
2024
- "WorkThanks"
2025
- ]
2026
- },
2027
- "IsActive": { "type": "boolean" },
2028
- "CreatedById": { "type": "string" },
2029
- "CreatedDate": { "type": "string", "format": "date-time" },
2030
- "LastModifiedById": { "type": "string" },
2031
- "LastModifiedDate": { "type": "string", "format": "date-time" },
2032
- "SystemModstamp": { "type": "string", "format": "date-time" }
2033
- }
2034
- },
2035
- "required": ["Name"],
2036
- "supported_sync_modes": ["incremental"],
2037
- "source_defined_cursor": true,
2038
- "default_cursor_field": ["updated"],
2039
- "source_defined_primary_key": [[]]
2040
- }
2041
- ]
5
+ "streams": []
2042
6
  }