@salesforce/core 8.23.7 → 8.24.1-dev.0

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 (34) hide show
  1. package/LICENSE.txt +1 -1
  2. package/README.md +27 -0
  3. package/lib/index.d.ts +6 -1
  4. package/lib/index.js +11 -2
  5. package/lib/org/scratchOrgInfoGenerator.js +12 -1
  6. package/lib/schema/project-scratch-def/features.d.ts +2 -0
  7. package/lib/schema/project-scratch-def/features.js +36 -0
  8. package/lib/schema/project-scratch-def/patternFeaturesList.d.ts +1 -0
  9. package/lib/schema/project-scratch-def/patternFeaturesList.js +69 -0
  10. package/lib/schema/project-scratch-def/scratchOrgDef.d.ts +176 -0
  11. package/lib/schema/project-scratch-def/scratchOrgDef.js +73 -0
  12. package/lib/schema/project-scratch-def/settings.d.ts +150 -0
  13. package/lib/schema/project-scratch-def/settings.js +591 -0
  14. package/lib/schema/project-scratch-def/simpleFeaturesList.d.ts +1 -0
  15. package/lib/schema/project-scratch-def/simpleFeaturesList.js +272 -0
  16. package/lib/schema/sfdx-project/bundleEntry.d.ts +11 -0
  17. package/lib/schema/sfdx-project/bundleEntry.js +28 -0
  18. package/lib/schema/sfdx-project/packageDir.d.ts +84 -0
  19. package/lib/schema/sfdx-project/packageDir.js +146 -0
  20. package/lib/schema/sfdx-project/registryPresets.d.ts +2 -0
  21. package/lib/schema/sfdx-project/registryPresets.js +12 -0
  22. package/lib/schema/sfdx-project/registryVariants.d.ts +104 -0
  23. package/lib/schema/sfdx-project/registryVariants.js +57 -0
  24. package/lib/schema/sfdx-project/replacements.d.ts +70 -0
  25. package/lib/schema/sfdx-project/replacements.js +76 -0
  26. package/lib/schema/sfdx-project/sfdxProjectJson.d.ts +201 -0
  27. package/lib/schema/sfdx-project/sfdxProjectJson.js +89 -0
  28. package/lib/schema/validator.d.ts +8 -0
  29. package/lib/schema/validator.js +8 -0
  30. package/lib/sfProject.d.ts +7 -5
  31. package/lib/sfProject.js +17 -21
  32. package/package.json +62 -9
  33. package/schemas/project-scratch-def.schema.json +1789 -0
  34. package/schemas/sfdx-project.schema.json +909 -0
@@ -0,0 +1,1789 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "orgName": {
6
+ "description": "The name of the scratch org.",
7
+ "title": "Organization Name",
8
+ "type": "string"
9
+ },
10
+ "edition": {
11
+ "description": "The Salesforce edition of the scratch org.",
12
+ "type": "string",
13
+ "enum": [
14
+ "Developer",
15
+ "Enterprise",
16
+ "Group",
17
+ "Partner Developer",
18
+ "Partner Enterprise",
19
+ "Partner Group",
20
+ "Partner Professional",
21
+ "Professional"
22
+ ]
23
+ },
24
+ "country": {
25
+ "description": "Dev Hub's country. If you want to override this value, enter the two-character, upper-case ISO-3166 country code (Alpha-2 code). You can find a full list of these codes at several sites, such as: https://www.iso.org/obp/ui/#search. This value sets the locale of the scratch org.",
26
+ "type": "string",
27
+ "maxLength": 2
28
+ },
29
+ "username": {
30
+ "description": "A user name formatted like test-unique_identifier@orgName.net.",
31
+ "type": "string"
32
+ },
33
+ "adminEmail": {
34
+ "description": "Email address of the Dev Hub user making the scratch org creation request.",
35
+ "title": "Administrator Email Address",
36
+ "type": "string"
37
+ },
38
+ "description": {
39
+ "description": "The description is a good way to document the scratch org's purpose. You can view or edit the description in the Dev Hub. From App Launcher, select Scratch Org Info or Active Scratch Orgs, then click the scratch org number.",
40
+ "title": "Description of the Org",
41
+ "type": "string"
42
+ },
43
+ "hasSampleData": {
44
+ "description": "Valid values are true and false. False is the default, which creates an org without sample data.",
45
+ "title": "Include Sample Data",
46
+ "default": false,
47
+ "type": "boolean"
48
+ },
49
+ "language": {
50
+ "description": "Default language for the country. To override the language set by the Dev Hub locale, see Supported Languages (https://help.salesforce.com/articleView?id=faq_getstart_what_languages_does.htm&type=5&language=en_US) for the codes to use in this field.",
51
+ "title": "Default Language",
52
+ "type": "string",
53
+ "maxLength": 5
54
+ },
55
+ "features": {
56
+ "description": "Features to enable in the scratch org.",
57
+ "type": "array",
58
+ "items": {
59
+ "anyOf": [
60
+ {
61
+ "anyOf": [
62
+ {
63
+ "title": "AddCustomApps:<value>",
64
+ "type": "string",
65
+ "pattern": "^AddCustomApps:[0-9]+$"
66
+ },
67
+ {
68
+ "title": "AddCustomObjects:<value>",
69
+ "type": "string",
70
+ "pattern": "^AddCustomObjects:[0-9]+$"
71
+ },
72
+ {
73
+ "title": "AddCustomRelationships:<value>",
74
+ "type": "string",
75
+ "pattern": "^AddCustomRelationships:[0-9]+$"
76
+ },
77
+ {
78
+ "title": "AddCustomTabs:<value>",
79
+ "type": "string",
80
+ "pattern": "^AddCustomTabs:[0-9]+$"
81
+ },
82
+ {
83
+ "title": "AddDataComCRMRecordCredit:<value>",
84
+ "type": "string",
85
+ "pattern": "^AddDataComCRMRecordCredit:[0-9]+$"
86
+ },
87
+ {
88
+ "title": "AddInsightsQueryLimit:<value>",
89
+ "type": "string",
90
+ "pattern": "^AddInsightsQueryLimit:[0-9]+$"
91
+ },
92
+ {
93
+ "title": "AdditionalFieldHistory:<value>",
94
+ "type": "string",
95
+ "pattern": "^AdditionalFieldHistory:[0-9]+$"
96
+ },
97
+ {
98
+ "title": "AssetScheduling:<value>",
99
+ "type": "string",
100
+ "pattern": "^AssetScheduling:[0-9]+$"
101
+ },
102
+ {
103
+ "title": "CalloutSizeMB:<value>",
104
+ "type": "string",
105
+ "pattern": "^CalloutSizeMB:[0-9]+$"
106
+ },
107
+ {
108
+ "title": "ConcStreamingClients:<value>",
109
+ "type": "string",
110
+ "pattern": "^ConcStreamingClients:[0-9]+$"
111
+ },
112
+ {
113
+ "title": "ConsolePersistenceInterval:<value>",
114
+ "type": "string",
115
+ "pattern": "^ConsolePersistenceInterval:[0-9]+$"
116
+ },
117
+ {
118
+ "title": "EducationCloud:<value>",
119
+ "type": "string",
120
+ "pattern": "^EducationCloud:[0-9]+$"
121
+ },
122
+ {
123
+ "title": "EmpPublishRateLimit:<value>",
124
+ "type": "string",
125
+ "pattern": "^EmpPublishRateLimit:[0-9]+$"
126
+ },
127
+ {
128
+ "title": "EncryptionStatisticsInterval:<value>",
129
+ "type": "string",
130
+ "pattern": "^EncryptionStatisticsInterval:[0-9]+$"
131
+ },
132
+ {
133
+ "title": "EncryptionSyncInterval:<value>",
134
+ "type": "string",
135
+ "pattern": "^EncryptionSyncInterval:[0-9]+$"
136
+ },
137
+ {
138
+ "title": "FieldService:<value>",
139
+ "type": "string",
140
+ "pattern": "^FieldService:[0-9]+$"
141
+ },
142
+ {
143
+ "title": "FieldServiceAppointmentAssistantUser:<value>",
144
+ "type": "string",
145
+ "pattern": "^FieldServiceAppointmentAssistantUser:[0-9]+$"
146
+ },
147
+ {
148
+ "title": "FieldServiceDispatcherUser:<value>",
149
+ "type": "string",
150
+ "pattern": "^FieldServiceDispatcherUser:[0-9]+$"
151
+ },
152
+ {
153
+ "title": "FieldServiceLastMileUser:<value>",
154
+ "type": "string",
155
+ "pattern": "^FieldServiceLastMileUser:[0-9]+$"
156
+ },
157
+ {
158
+ "title": "FieldServiceMobileUser:<value>",
159
+ "type": "string",
160
+ "pattern": "^FieldServiceMobileUser:[0-9]+$"
161
+ },
162
+ {
163
+ "title": "FieldServiceSchedulingUser:<value>",
164
+ "type": "string",
165
+ "pattern": "^FieldServiceSchedulingUser:[0-9]+$"
166
+ },
167
+ {
168
+ "title": "FinancialServicesCommunityUser:<value>",
169
+ "type": "string",
170
+ "pattern": "^FinancialServicesCommunityUser:[0-9]+$"
171
+ },
172
+ {
173
+ "title": "FinancialServicesUser:<value>",
174
+ "type": "string",
175
+ "pattern": "^FinancialServicesUser:[0-9]+$"
176
+ },
177
+ {
178
+ "title": "GenStreamingEventsPerDay:<value>",
179
+ "type": "string",
180
+ "pattern": "^GenStreamingEventsPerDay:[0-9]+$"
181
+ },
182
+ {
183
+ "title": "HoursBetweenCoverageJob:<value>",
184
+ "type": "string",
185
+ "pattern": "^HoursBetweenCoverageJob:[0-9]+$"
186
+ },
187
+ {
188
+ "title": "LoyaltyMaxOrderLinePerHour:<value>",
189
+ "type": "string",
190
+ "pattern": "^LoyaltyMaxOrderLinePerHour:[0-9]+$"
191
+ },
192
+ {
193
+ "title": "LoyaltyMaxProcExecPerHour:<value>",
194
+ "type": "string",
195
+ "pattern": "^LoyaltyMaxProcExecPerHour:[0-9]+$"
196
+ },
197
+ {
198
+ "title": "LoyaltyMaxTransactions:<value>",
199
+ "type": "string",
200
+ "pattern": "^LoyaltyMaxTransactions:[0-9]+$"
201
+ },
202
+ {
203
+ "title": "LoyaltyMaxTrxnJournals:<value>",
204
+ "type": "string",
205
+ "pattern": "^LoyaltyMaxTrxnJournals:[0-9]+$"
206
+ },
207
+ {
208
+ "title": "LoyaltyMaximumPartners:<value>",
209
+ "type": "string",
210
+ "pattern": "^LoyaltyMaximumPartners:[0-9]+$"
211
+ },
212
+ {
213
+ "title": "LoyaltyMaximumPrograms:<value>",
214
+ "type": "string",
215
+ "pattern": "^LoyaltyMaximumPrograms:[0-9]+$"
216
+ },
217
+ {
218
+ "title": "MaxActiveDPEDefs:<value>",
219
+ "type": "string",
220
+ "pattern": "^MaxActiveDPEDefs:[0-9]+$"
221
+ },
222
+ {
223
+ "title": "MaxApexCodeSize:<value>",
224
+ "type": "string",
225
+ "pattern": "^MaxApexCodeSize:[0-9]+$"
226
+ },
227
+ {
228
+ "title": "MaxCustomLabels:<value>",
229
+ "type": "string",
230
+ "pattern": "^MaxCustomLabels:[0-9]+$"
231
+ },
232
+ {
233
+ "title": "MaxDataSourcesPerDPE:<value>",
234
+ "type": "string",
235
+ "pattern": "^MaxDataSourcesPerDPE:[0-9]+$"
236
+ },
237
+ {
238
+ "title": "MaxDatasetLinksPerDT:<value>",
239
+ "type": "string",
240
+ "pattern": "^MaxDatasetLinksPerDT:[0-9]+$"
241
+ },
242
+ {
243
+ "title": "MaxDecisionTableAllowed:<value>",
244
+ "type": "string",
245
+ "pattern": "^MaxDecisionTableAllowed:[0-9]+$"
246
+ },
247
+ {
248
+ "title": "MaxFavoritesAllowed:<value>",
249
+ "type": "string",
250
+ "pattern": "^MaxFavoritesAllowed:[0-9]+$"
251
+ },
252
+ {
253
+ "title": "MaxFieldsPerNode:<value>",
254
+ "type": "string",
255
+ "pattern": "^MaxFieldsPerNode:[0-9]+$"
256
+ },
257
+ {
258
+ "title": "MaxInputColumnsPerDT:<value>",
259
+ "type": "string",
260
+ "pattern": "^MaxInputColumnsPerDT:[0-9]+$"
261
+ },
262
+ {
263
+ "title": "MaxLoyaltyProcessRules:<value>",
264
+ "type": "string",
265
+ "pattern": "^MaxLoyaltyProcessRules:[0-9]+$"
266
+ },
267
+ {
268
+ "title": "MaxNoOfLexThemesAllowed:<value>",
269
+ "type": "string",
270
+ "pattern": "^MaxNoOfLexThemesAllowed:[0-9]+$"
271
+ },
272
+ {
273
+ "title": "MaxNodesPerDPE:<value>",
274
+ "type": "string",
275
+ "pattern": "^MaxNodesPerDPE:[0-9]+$"
276
+ },
277
+ {
278
+ "title": "MaxOutputColumnsPerDT:<value>",
279
+ "type": "string",
280
+ "pattern": "^MaxOutputColumnsPerDT:[0-9]+$"
281
+ },
282
+ {
283
+ "title": "MaxSourceObjectPerDSL:<value>",
284
+ "type": "string",
285
+ "pattern": "^MaxSourceObjectPerDSL:[0-9]+$"
286
+ },
287
+ {
288
+ "title": "MaxStreamingTopics:<value>",
289
+ "type": "string",
290
+ "pattern": "^MaxStreamingTopics:[0-9]+$"
291
+ },
292
+ {
293
+ "title": "MaxUserNavItemsAllowed:<value>",
294
+ "type": "string",
295
+ "pattern": "^MaxUserNavItemsAllowed:[0-9]+$"
296
+ },
297
+ {
298
+ "title": "MaxUserStreamingChannels:<value>",
299
+ "type": "string",
300
+ "pattern": "^MaxUserStreamingChannels:[0-9]+$"
301
+ },
302
+ {
303
+ "title": "MaxWritebacksPerDPE:<value>",
304
+ "type": "string",
305
+ "pattern": "^MaxWritebacksPerDPE:[0-9]+$"
306
+ },
307
+ {
308
+ "title": "MedVisDescriptorLimit:<value>",
309
+ "type": "string",
310
+ "pattern": "^MedVisDescriptorLimit:[0-9]+$"
311
+ },
312
+ {
313
+ "title": "MobileExtMaxFileSizeMB:<value>",
314
+ "type": "string",
315
+ "pattern": "^MobileExtMaxFileSizeMB:[0-9]+$"
316
+ },
317
+ {
318
+ "title": "NumPlatformEvents:<value>",
319
+ "type": "string",
320
+ "pattern": "^NumPlatformEvents:[0-9]+$"
321
+ },
322
+ {
323
+ "title": "PlatformConnect:<value>",
324
+ "type": "string",
325
+ "pattern": "^PlatformConnect:[0-9]+$"
326
+ },
327
+ {
328
+ "title": "PlatformEventsPerDay:<value>",
329
+ "type": "string",
330
+ "pattern": "^PlatformEventsPerDay:[0-9]+$"
331
+ },
332
+ {
333
+ "title": "StreamingEventsPerDay:<value>",
334
+ "type": "string",
335
+ "pattern": "^StreamingEventsPerDay:[0-9]+$"
336
+ },
337
+ {
338
+ "title": "SubPerStreamingChannel:<value>",
339
+ "type": "string",
340
+ "pattern": "^SubPerStreamingChannel:[0-9]+$"
341
+ },
342
+ {
343
+ "title": "SubPerStreamingTopic:<value>",
344
+ "type": "string",
345
+ "pattern": "^SubPerStreamingTopic:[0-9]+$"
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "enum": [
351
+ "AIAttribution",
352
+ "API",
353
+ "AccountInspection",
354
+ "AccountingSubledgerGrowthEdition",
355
+ "AccountingSubledgerStarterEdition",
356
+ "AccountingSubledgerUser",
357
+ "AdmissionsConnectUser",
358
+ "AdvisorLinkFeature",
359
+ "AdvisorLinkPathwaysFeature",
360
+ "AllUserIdServiceAccess",
361
+ "AnalyticsAdminPerms",
362
+ "AnalyticsAppEmbedded",
363
+ "ApexGuruCodeAnalyzer",
364
+ "ArcGraphCommunity",
365
+ "Assessments",
366
+ "AssociationEngine",
367
+ "AuthorApex",
368
+ "B2BCommerce",
369
+ "B2BLoyaltyManagement",
370
+ "B2CCommerceGMV",
371
+ "B2CLoyaltyManagement",
372
+ "B2CLoyaltyManagementPlus",
373
+ "BYOCCaaS",
374
+ "BYOOTT",
375
+ "BatchManagement",
376
+ "BenefitManagement",
377
+ "BigObjectsBulkAPI",
378
+ "BillingAdvanced",
379
+ "Briefcase",
380
+ "BudgetManagement",
381
+ "BusinessRulesEngine",
382
+ "CGAnalytics",
383
+ "CMSMaxContType",
384
+ "CMSMaxNodesPerContType",
385
+ "CMSUnlimitedUse",
386
+ "CPQ",
387
+ "CacheOnlyKeys",
388
+ "CampaignInfluence2",
389
+ "CascadeDelete",
390
+ "CaseClassification",
391
+ "CaseWrapUp",
392
+ "ChangeDataCapture",
393
+ "Chatbot",
394
+ "ChatterEmailFooterLogo",
395
+ "ChatterEmailFooterText",
396
+ "ChatterEmailSenderName",
397
+ "CloneApplication",
398
+ "Communities",
399
+ "CompareReportsOrgPerm",
400
+ "ConAppPluginExecuteAsUser",
401
+ "ConnectedAppCustomNotifSubscription",
402
+ "ConnectedAppToolingAPI",
403
+ "ConsentEventStream",
404
+ "ContactsToMultipleAccounts",
405
+ "ContractApprovals",
406
+ "ContractManagement",
407
+ "ContractMgmtInd",
408
+ "CoreCpq",
409
+ "CustomFieldDataTranslation",
410
+ "CustomNotificationType",
411
+ "CustomerDataPlatform",
412
+ "CustomerDataPlatformLite",
413
+ "CustomerExperienceAnalytics",
414
+ "DSARPortability",
415
+ "DataComDnbAccounts",
416
+ "DataComFullClean",
417
+ "DataMaskUser",
418
+ "DataProcessingEngine",
419
+ "DebugApex",
420
+ "DecisionTable",
421
+ "DefaultWorkflowUser",
422
+ "DeferSharingCalc",
423
+ "DevOpsCenter",
424
+ "DevelopmentWave",
425
+ "DeviceTrackingEnabled",
426
+ "DisableManageIdConfAPI",
427
+ "DisclosureFramework",
428
+ "Division",
429
+ "DocGen",
430
+ "DocGenDesigner",
431
+ "DocGenInd",
432
+ "DocumentChecklist",
433
+ "DocumentReaderPageLimit",
434
+ "DurableClassicStreamingAPI",
435
+ "DurableGenericStreamingAPI",
436
+ "DynamicClientCreationLimit",
437
+ "EAOutputConnectors",
438
+ "EASyncOut",
439
+ "EAndUDigitalSales",
440
+ "EAndUSelfServicePortal",
441
+ "ERMAnalytics",
442
+ "EdPredictionM3Threshold",
443
+ "EdPredictionTimeout",
444
+ "EdPredictionTimeoutBulk",
445
+ "EdPredictionTimeoutByomBulk",
446
+ "Einstein1AIPlatform",
447
+ "EinsteinAnalyticsPlus",
448
+ "EinsteinArticleRecommendations",
449
+ "EinsteinBuilderFree",
450
+ "EinsteinDocReader",
451
+ "EinsteinRecommendationBuilder",
452
+ "EinsteinRecommendationBuilderMetadata",
453
+ "EinsteinSearch",
454
+ "EinsteinVisits",
455
+ "EinsteinVisitsED",
456
+ "EmbeddedLoginForIE",
457
+ "EnableManageIdConfUI",
458
+ "EnablePRM",
459
+ "EnableSetPasswordInApi",
460
+ "Enablement",
461
+ "EnergyAndUtilitiesCloud",
462
+ "Entitlements",
463
+ "EntityTranslation",
464
+ "EventLogFile",
465
+ "ExcludeSAMLSessionIndex",
466
+ "Explainability",
467
+ "ExpressionSetMaxExecPerHour",
468
+ "ExternalIdentityLogin",
469
+ "FSCAlertFramework",
470
+ "FSCServiceProcess",
471
+ "FieldAuditTrail",
472
+ "FieldServiceMobileExtension",
473
+ "FinanceLogging",
474
+ "FinancialServicesInsuranceUser",
475
+ "FlowSites",
476
+ "ForceComPlatform",
477
+ "ForecastEnableCustomField",
478
+ "Functions",
479
+ "Fundraising",
480
+ "GenericStreaming",
481
+ "Grantmaking",
482
+ "GuidanceHubAllowed",
483
+ "HLSAnalytics",
484
+ "HealthCloudAddOn",
485
+ "HealthCloudEOLOverride",
486
+ "HealthCloudForCmty",
487
+ "HealthCloudMedicationReconciliation",
488
+ "HealthCloudPNMAddOn",
489
+ "HealthCloudUser",
490
+ "HighVelocitySales",
491
+ "HighVolumePlatformEventAddOn",
492
+ "IdentityProvisioningFeatures",
493
+ "IgnoreQueryParamWhitelist",
494
+ "IndustriesActionPlan",
495
+ "IndustriesBranchManagement",
496
+ "IndustriesCompliantDataSharing",
497
+ "IndustriesManufacturingCmty",
498
+ "IndustriesMfgAccountForecast",
499
+ "IndustriesMfgAdvncdAccFrcs",
500
+ "IndustriesMfgPartnerVisitMgmt",
501
+ "IndustriesMfgProgram",
502
+ "IndustriesMfgRebates",
503
+ "IndustriesMfgTargets",
504
+ "InsightsPlatform",
505
+ "InsuranceCalculationUser",
506
+ "InsuranceClaimMgmt",
507
+ "InsurancePolicyAdmin",
508
+ "IntelligentDocumentReader",
509
+ "Interaction",
510
+ "InvestigativeCaseManagement",
511
+ "InvoiceManagement",
512
+ "IoT",
513
+ "JigsawUser",
514
+ "Knowledge",
515
+ "LegacyLiveAgentRouting",
516
+ "LightningSalesConsole",
517
+ "LightningScheduler",
518
+ "LightningServiceConsole",
519
+ "LiveAgent",
520
+ "LiveMessage",
521
+ "LongLayoutSectionTitles",
522
+ "LoyaltyAnalytics",
523
+ "LoyaltyEngine",
524
+ "LoyaltyManagementStarter",
525
+ "Macros",
526
+ "MarketingCloud",
527
+ "MarketingUser",
528
+ "MaterialityAssessment",
529
+ "MaxAudTypeCriterionPerAud",
530
+ "MaxWishlistsItemsPerWishlist",
531
+ "MaxWishlistsPerStoreAccUsr",
532
+ "MinKeyRotationInterval",
533
+ "MobileSecurity",
534
+ "MobileVoiceAndLLM",
535
+ "MultiCurrency",
536
+ "MultiLevelMasterDetail",
537
+ "MutualAuthentication",
538
+ "MyTrailhead",
539
+ "NonprofitCloudCaseManagementUser",
540
+ "ObjectLinking",
541
+ "OmnistudioDesigner",
542
+ "OmnistudioMetadata",
543
+ "OmnistudioRuntime",
544
+ "OrderManagement",
545
+ "OrderSaveBehaviorBoth",
546
+ "OrderSaveLogicEnabled",
547
+ "OutboundMessageHTTPSession",
548
+ "OutcomeManagement",
549
+ "PSSAssetManagement",
550
+ "PardotScFeaturesCampaignInfluence",
551
+ "PersonAccounts",
552
+ "PipelineInspection",
553
+ "PlatformCache",
554
+ "PlatformEncryption",
555
+ "ProcessBuilder",
556
+ "ProductCatalogManagementAddOn",
557
+ "ProductCatalogManagementPCAddOn",
558
+ "ProductCatalogManagementViewerAddOn",
559
+ "ProductsAndSchedules",
560
+ "ProgramManagement",
561
+ "ProviderFreePlatformCache",
562
+ "ProviderManagement",
563
+ "PublicSectorAccess",
564
+ "PublicSectorApplicationUsageCreditsAddOn",
565
+ "PublicSectorSiteTemplate",
566
+ "RateManagement",
567
+ "RecordTypes",
568
+ "RefreshOnInvalidSession",
569
+ "RevSubscriptionManagement",
570
+ "S1ClientComponentCacheSize",
571
+ "SAML20SingleLogout",
572
+ "SCIMProtocol",
573
+ "SFDOInsightsDataIntegrityUser",
574
+ "SalesCloudEinstein",
575
+ "SalesUser",
576
+ "SalesforceContentUser",
577
+ "SalesforceFeedbackManagementStarter",
578
+ "SalesforceHostedMCP",
579
+ "SalesforceIdentityForCommunities",
580
+ "SalesforcePricing",
581
+ "ScvMultipartyAndConsult",
582
+ "SecurityEventEnabled",
583
+ "SentimentInsightsFeature",
584
+ "ServiceCatalog",
585
+ "ServiceCloud",
586
+ "ServiceCloudVoicePartnerTelephony",
587
+ "ServiceUser",
588
+ "SessionIdInLogEnabled",
589
+ "SharedActivities",
590
+ "Sites",
591
+ "SocialCustomerService",
592
+ "StateAndCountryPicklist",
593
+ "StreamingAPI",
594
+ "SurveyAdvancedFeatures",
595
+ "SustainabilityApp",
596
+ "SustainabilityCloud",
597
+ "TCRMforSustainability",
598
+ "TalentRecruitmentManagement",
599
+ "TimeSheetTemplateSettings",
600
+ "TimelineConditionsLimit",
601
+ "TimelineEventLimit",
602
+ "TimelineRecordTypeLimit",
603
+ "TransactionFinalizers",
604
+ "UsageManagement",
605
+ "WaveMaxCurrency",
606
+ "WavePlatform",
607
+ "WorkThanksPref",
608
+ "Workflow",
609
+ "WorkflowFlowActionFeature",
610
+ "WorkplaceCommandCenterUser"
611
+ ],
612
+ "type": "string"
613
+ }
614
+ ]
615
+ }
616
+ },
617
+ "template": {
618
+ "description": "The template id for the scratch org shape. (Pilot)",
619
+ "title": "Template ID",
620
+ "type": "string"
621
+ },
622
+ "settings": {
623
+ "description": "Settings for the scratch org.",
624
+ "type": "object",
625
+ "properties": {
626
+ "accountingSettings": {
627
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_accountingsettings.htm",
628
+ "type": "object",
629
+ "propertyNames": {
630
+ "type": "string"
631
+ },
632
+ "additionalProperties": {}
633
+ },
634
+ "accountInsightsSettings": {
635
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_accountinsightssettings.htm",
636
+ "type": "object",
637
+ "propertyNames": {
638
+ "type": "string"
639
+ },
640
+ "additionalProperties": {}
641
+ },
642
+ "accountIntelligenceSettings": {
643
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_accountintelligencesettings.htm",
644
+ "type": "object",
645
+ "propertyNames": {
646
+ "type": "string"
647
+ },
648
+ "additionalProperties": {}
649
+ },
650
+ "accountPlanSettings": {
651
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_accountplansettings.htm",
652
+ "type": "object",
653
+ "propertyNames": {
654
+ "type": "string"
655
+ },
656
+ "additionalProperties": {}
657
+ },
658
+ "accountSettings": {
659
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_accountsettings.htm",
660
+ "type": "object",
661
+ "propertyNames": {
662
+ "type": "string"
663
+ },
664
+ "additionalProperties": {}
665
+ },
666
+ "actionsSettings": {
667
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_actionssettings.htm",
668
+ "type": "object",
669
+ "propertyNames": {
670
+ "type": "string"
671
+ },
672
+ "additionalProperties": {}
673
+ },
674
+ "activitiesSettings": {
675
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_activitiessettings.htm",
676
+ "type": "object",
677
+ "propertyNames": {
678
+ "type": "string"
679
+ },
680
+ "additionalProperties": {}
681
+ },
682
+ "addressSettings": {
683
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_addresssettings.htm",
684
+ "type": "object",
685
+ "propertyNames": {
686
+ "type": "string"
687
+ },
688
+ "additionalProperties": {}
689
+ },
690
+ "agentforceForDevelopersSettings": {
691
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_agentforcefordeveloperssettings.htm",
692
+ "type": "object",
693
+ "propertyNames": {
694
+ "type": "string"
695
+ },
696
+ "additionalProperties": {}
697
+ },
698
+ "agentPlatformSettings": {
699
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_agentplatformsettings.htm",
700
+ "type": "object",
701
+ "propertyNames": {
702
+ "type": "string"
703
+ },
704
+ "additionalProperties": {}
705
+ },
706
+ "aIReplyRecommendationsSettings": {
707
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_aireplyrecommendationssettings.htm",
708
+ "type": "object",
709
+ "propertyNames": {
710
+ "type": "string"
711
+ },
712
+ "additionalProperties": {}
713
+ },
714
+ "analyticsSettings": {
715
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_analyticssettings.htm",
716
+ "type": "object",
717
+ "propertyNames": {
718
+ "type": "string"
719
+ },
720
+ "additionalProperties": {}
721
+ },
722
+ "apexSettings": {
723
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_apexsettings.htm",
724
+ "type": "object",
725
+ "propertyNames": {
726
+ "type": "string"
727
+ },
728
+ "additionalProperties": {}
729
+ },
730
+ "appAnalyticsSettings": {
731
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_appanalyticssettings.htm",
732
+ "type": "object",
733
+ "propertyNames": {
734
+ "type": "string"
735
+ },
736
+ "additionalProperties": {}
737
+ },
738
+ "appExperienceSettings": {
739
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_appexperiencesettings.htm",
740
+ "type": "object",
741
+ "propertyNames": {
742
+ "type": "string"
743
+ },
744
+ "additionalProperties": {}
745
+ },
746
+ "associationEngineSettings": {
747
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_associationenginesettings.htm",
748
+ "type": "object",
749
+ "propertyNames": {
750
+ "type": "string"
751
+ },
752
+ "additionalProperties": {}
753
+ },
754
+ "automatedContactsSettings": {
755
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_automatedcontactssettings.htm",
756
+ "type": "object",
757
+ "propertyNames": {
758
+ "type": "string"
759
+ },
760
+ "additionalProperties": {}
761
+ },
762
+ "botSettings": {
763
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_botsettings.htm",
764
+ "type": "object",
765
+ "propertyNames": {
766
+ "type": "string"
767
+ },
768
+ "additionalProperties": {}
769
+ },
770
+ "branchManagementSettings": {
771
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_branchmanagementsettings.htm",
772
+ "type": "object",
773
+ "propertyNames": {
774
+ "type": "string"
775
+ },
776
+ "additionalProperties": {}
777
+ },
778
+ "businessHoursSettings": {
779
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_businesshourssettings.htm",
780
+ "type": "object",
781
+ "propertyNames": {
782
+ "type": "string"
783
+ },
784
+ "additionalProperties": {}
785
+ },
786
+ "campaignSettings": {
787
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_campaignsettings.htm",
788
+ "type": "object",
789
+ "propertyNames": {
790
+ "type": "string"
791
+ },
792
+ "additionalProperties": {}
793
+ },
794
+ "caseSettings": {
795
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_casesettings.htm",
796
+ "type": "object",
797
+ "propertyNames": {
798
+ "type": "string"
799
+ },
800
+ "additionalProperties": {}
801
+ },
802
+ "chatterAnswersSettings": {
803
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_chatteranswerssettings.htm",
804
+ "type": "object",
805
+ "propertyNames": {
806
+ "type": "string"
807
+ },
808
+ "additionalProperties": {}
809
+ },
810
+ "chatterEmailsMDSettings": {
811
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_chatteremailmdsettings.htm",
812
+ "type": "object",
813
+ "propertyNames": {
814
+ "type": "string"
815
+ },
816
+ "additionalProperties": {}
817
+ },
818
+ "chatterSettings": {
819
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_chattersettings.htm",
820
+ "type": "object",
821
+ "propertyNames": {
822
+ "type": "string"
823
+ },
824
+ "additionalProperties": {}
825
+ },
826
+ "codeBuilderSettings": {
827
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_codebuildersettings.htm",
828
+ "type": "object",
829
+ "propertyNames": {
830
+ "type": "string"
831
+ },
832
+ "additionalProperties": {}
833
+ },
834
+ "collectionsDashboardSettings": {
835
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_collectionsdashboardsettings.htm",
836
+ "type": "object",
837
+ "propertyNames": {
838
+ "type": "string"
839
+ },
840
+ "additionalProperties": {}
841
+ },
842
+ "communitiesSettings": {
843
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_communitiessettings.htm",
844
+ "type": "object",
845
+ "propertyNames": {
846
+ "type": "string"
847
+ },
848
+ "additionalProperties": {}
849
+ },
850
+ "companySettings": {
851
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_companyprofilesettings.htm",
852
+ "type": "object",
853
+ "propertyNames": {
854
+ "type": "string"
855
+ },
856
+ "additionalProperties": {}
857
+ },
858
+ "connectedAppSettings": {
859
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_connectedappsettings.htm",
860
+ "type": "object",
861
+ "propertyNames": {
862
+ "type": "string"
863
+ },
864
+ "additionalProperties": {}
865
+ },
866
+ "contentSettings": {
867
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_contentsettings.htm",
868
+ "type": "object",
869
+ "propertyNames": {
870
+ "type": "string"
871
+ },
872
+ "additionalProperties": {}
873
+ },
874
+ "contractSettings": {
875
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_contractsettings.htm",
876
+ "type": "object",
877
+ "propertyNames": {
878
+ "type": "string"
879
+ },
880
+ "additionalProperties": {}
881
+ },
882
+ "conversationalIntelligenceSettings": {
883
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_conversationalintelligencesettings.htm",
884
+ "type": "object",
885
+ "propertyNames": {
886
+ "type": "string"
887
+ },
888
+ "additionalProperties": {}
889
+ },
890
+ "conversationChannelDefinition": {
891
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_conversationchanneldefinition.htm",
892
+ "type": "object",
893
+ "propertyNames": {
894
+ "type": "string"
895
+ },
896
+ "additionalProperties": {}
897
+ },
898
+ "currencySettings": {
899
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_currencysettings.htm",
900
+ "type": "object",
901
+ "propertyNames": {
902
+ "type": "string"
903
+ },
904
+ "additionalProperties": {}
905
+ },
906
+ "customAddressFieldSettings": {
907
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_customaddressfieldsettings.htm",
908
+ "type": "object",
909
+ "propertyNames": {
910
+ "type": "string"
911
+ },
912
+ "additionalProperties": {}
913
+ },
914
+ "dataDotComSettings": {
915
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_datadotcomsettings.htm",
916
+ "type": "object",
917
+ "propertyNames": {
918
+ "type": "string"
919
+ },
920
+ "additionalProperties": {}
921
+ },
922
+ "dataImportManagementSettings": {
923
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_dataimportmanagementsettings.htm",
924
+ "type": "object",
925
+ "propertyNames": {
926
+ "type": "string"
927
+ },
928
+ "additionalProperties": {}
929
+ },
930
+ "deploymentSettings": {
931
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploymentsettings.htm",
932
+ "type": "object",
933
+ "propertyNames": {
934
+ "type": "string"
935
+ },
936
+ "additionalProperties": {}
937
+ },
938
+ "devHubSettings": {
939
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_devhubsettings.htm",
940
+ "type": "object",
941
+ "propertyNames": {
942
+ "type": "string"
943
+ },
944
+ "additionalProperties": {}
945
+ },
946
+ "documentGenerationSetting": {
947
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_documentgenerationsetting.htm",
948
+ "type": "object",
949
+ "propertyNames": {
950
+ "type": "string"
951
+ },
952
+ "additionalProperties": {}
953
+ },
954
+ "dynamicFormsSettings": {
955
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_dynamicformssettings.htm",
956
+ "type": "object",
957
+ "propertyNames": {
958
+ "type": "string"
959
+ },
960
+ "additionalProperties": {}
961
+ },
962
+ "eACSettings": {
963
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_eacsettings.htm",
964
+ "type": "object",
965
+ "propertyNames": {
966
+ "type": "string"
967
+ },
968
+ "additionalProperties": {}
969
+ },
970
+ "einsteinAgentSettings": {
971
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_einsteinagentsettings.htm",
972
+ "type": "object",
973
+ "propertyNames": {
974
+ "type": "string"
975
+ },
976
+ "additionalProperties": {}
977
+ },
978
+ "einsteinAISettings": {
979
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_einsteinaisettings.htm",
980
+ "type": "object",
981
+ "propertyNames": {
982
+ "type": "string"
983
+ },
984
+ "additionalProperties": {}
985
+ },
986
+ "einsteinGptSettings": {
987
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_einsteingptsettings.htm",
988
+ "type": "object",
989
+ "propertyNames": {
990
+ "type": "string"
991
+ },
992
+ "additionalProperties": {}
993
+ },
994
+ "emailAdministrationSettings": {
995
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_emailadministrationsettings.htm",
996
+ "type": "object",
997
+ "propertyNames": {
998
+ "type": "string"
999
+ },
1000
+ "additionalProperties": {}
1001
+ },
1002
+ "emailIntegrationSettings": {
1003
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_emailintegrationsettings.htm",
1004
+ "type": "object",
1005
+ "propertyNames": {
1006
+ "type": "string"
1007
+ },
1008
+ "additionalProperties": {}
1009
+ },
1010
+ "emailTemplateSettings": {
1011
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_emailtemplatesettings.htm",
1012
+ "type": "object",
1013
+ "propertyNames": {
1014
+ "type": "string"
1015
+ },
1016
+ "additionalProperties": {}
1017
+ },
1018
+ "employeeUserSettings": {
1019
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_employeeusersettings.htm",
1020
+ "type": "object",
1021
+ "propertyNames": {
1022
+ "type": "string"
1023
+ },
1024
+ "additionalProperties": {}
1025
+ },
1026
+ "encryptionKeySettings": {
1027
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_encryptionkeysettings.htm",
1028
+ "type": "object",
1029
+ "propertyNames": {
1030
+ "type": "string"
1031
+ },
1032
+ "additionalProperties": {}
1033
+ },
1034
+ "enhancedNotesSettings": {
1035
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_enhancednotessettings.htm",
1036
+ "type": "object",
1037
+ "propertyNames": {
1038
+ "type": "string"
1039
+ },
1040
+ "additionalProperties": {}
1041
+ },
1042
+ "entitlementSettings": {
1043
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_entitlementsettings.htm",
1044
+ "type": "object",
1045
+ "propertyNames": {
1046
+ "type": "string"
1047
+ },
1048
+ "additionalProperties": {}
1049
+ },
1050
+ "eventSettings": {
1051
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_eventsettings.htm",
1052
+ "type": "object",
1053
+ "propertyNames": {
1054
+ "type": "string"
1055
+ },
1056
+ "additionalProperties": {}
1057
+ },
1058
+ "experienceBundleSettings": {
1059
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_experiencebundlesettings.htm",
1060
+ "type": "object",
1061
+ "propertyNames": {
1062
+ "type": "string"
1063
+ },
1064
+ "additionalProperties": {}
1065
+ },
1066
+ "externalClientAppSettings": {
1067
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_externalclientappsettings.htm",
1068
+ "type": "object",
1069
+ "propertyNames": {
1070
+ "type": "string"
1071
+ },
1072
+ "additionalProperties": {}
1073
+ },
1074
+ "externalServicesSettings": {
1075
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_externalservicessettings.htm",
1076
+ "type": "object",
1077
+ "propertyNames": {
1078
+ "type": "string"
1079
+ },
1080
+ "additionalProperties": {}
1081
+ },
1082
+ "fieldServiceSettings": {
1083
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_fieldservicesettings.htm",
1084
+ "type": "object",
1085
+ "propertyNames": {
1086
+ "type": "string"
1087
+ },
1088
+ "additionalProperties": {}
1089
+ },
1090
+ "filesConnectSettings": {
1091
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_filesconnectsettings.htm",
1092
+ "type": "object",
1093
+ "propertyNames": {
1094
+ "type": "string"
1095
+ },
1096
+ "additionalProperties": {}
1097
+ },
1098
+ "fileUploadAndDownloadSecuritySettings": {
1099
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_fileuploadanddownloadsecuritysettings.htm",
1100
+ "type": "object",
1101
+ "propertyNames": {
1102
+ "type": "string"
1103
+ },
1104
+ "additionalProperties": {}
1105
+ },
1106
+ "flowSettings": {
1107
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_flowsettings.htm",
1108
+ "type": "object",
1109
+ "propertyNames": {
1110
+ "type": "string"
1111
+ },
1112
+ "additionalProperties": {}
1113
+ },
1114
+ "forecastingObjectListSettings": {
1115
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_forecastingobjectlistsettings.htm",
1116
+ "type": "object",
1117
+ "propertyNames": {
1118
+ "type": "string"
1119
+ },
1120
+ "additionalProperties": {}
1121
+ },
1122
+ "forecastingSettings": {
1123
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_forecastingsettings.htm",
1124
+ "type": "object",
1125
+ "propertyNames": {
1126
+ "type": "string"
1127
+ },
1128
+ "additionalProperties": {}
1129
+ },
1130
+ "highVelocitySalesSettings": {
1131
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_highvelocitysalessettings.htm",
1132
+ "type": "object",
1133
+ "propertyNames": {
1134
+ "type": "string"
1135
+ },
1136
+ "additionalProperties": {}
1137
+ },
1138
+ "ideasSettings": {
1139
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_ideassettings.htm",
1140
+ "type": "object",
1141
+ "propertyNames": {
1142
+ "type": "string"
1143
+ },
1144
+ "additionalProperties": {}
1145
+ },
1146
+ "identityProviderSettings": {
1147
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_identityprovidersettings.htm",
1148
+ "type": "object",
1149
+ "propertyNames": {
1150
+ "type": "string"
1151
+ },
1152
+ "additionalProperties": {}
1153
+ },
1154
+ "iframeWhiteListUrlSettings": {
1155
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_iframewhitelisturlsettings.htm",
1156
+ "type": "object",
1157
+ "propertyNames": {
1158
+ "type": "string"
1159
+ },
1160
+ "additionalProperties": {}
1161
+ },
1162
+ "incidentMgmtSettings": {
1163
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_incidentmgmtsettings.htm",
1164
+ "type": "object",
1165
+ "propertyNames": {
1166
+ "type": "string"
1167
+ },
1168
+ "additionalProperties": {}
1169
+ },
1170
+ "industriesEinsteinFeatureSettings": {
1171
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/industrieseinsteinfeaturesettings_metadata_api.htm",
1172
+ "type": "object",
1173
+ "propertyNames": {
1174
+ "type": "string"
1175
+ },
1176
+ "additionalProperties": {}
1177
+ },
1178
+ "industriesLoyaltySettings": {
1179
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/industriesloyaltysettings_metadata_api.htm",
1180
+ "type": "object",
1181
+ "propertyNames": {
1182
+ "type": "string"
1183
+ },
1184
+ "additionalProperties": {}
1185
+ },
1186
+ "industriesSettings": {
1187
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_industriessettings.htm",
1188
+ "type": "object",
1189
+ "propertyNames": {
1190
+ "type": "string"
1191
+ },
1192
+ "additionalProperties": {}
1193
+ },
1194
+ "interestTaggingSettings": {
1195
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_interesttaggingsettings.htm",
1196
+ "type": "object",
1197
+ "propertyNames": {
1198
+ "type": "string"
1199
+ },
1200
+ "additionalProperties": {}
1201
+ },
1202
+ "inventorySettings": {
1203
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_inventorysettings.htm",
1204
+ "type": "object",
1205
+ "propertyNames": {
1206
+ "type": "string"
1207
+ },
1208
+ "additionalProperties": {}
1209
+ },
1210
+ "invLatePymntRiskCalcSettings": {
1211
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_invlatepymntriskcalcsettings.htm",
1212
+ "type": "object",
1213
+ "propertyNames": {
1214
+ "type": "string"
1215
+ },
1216
+ "additionalProperties": {}
1217
+ },
1218
+ "invocableActionSettings": {
1219
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_invocableactionsettings.htm",
1220
+ "type": "object",
1221
+ "propertyNames": {
1222
+ "type": "string"
1223
+ },
1224
+ "additionalProperties": {}
1225
+ },
1226
+ "ioTSettings": {
1227
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_iotsettings.htm",
1228
+ "type": "object",
1229
+ "propertyNames": {
1230
+ "type": "string"
1231
+ },
1232
+ "additionalProperties": {}
1233
+ },
1234
+ "knowledgeSettings": {
1235
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_knowledgesettings.htm",
1236
+ "type": "object",
1237
+ "propertyNames": {
1238
+ "type": "string"
1239
+ },
1240
+ "additionalProperties": {}
1241
+ },
1242
+ "languageSettings": {
1243
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_languagesettings.htm",
1244
+ "type": "object",
1245
+ "propertyNames": {
1246
+ "type": "string"
1247
+ },
1248
+ "additionalProperties": {}
1249
+ },
1250
+ "leadConfigSettings": {
1251
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_leadconfigsettings.htm",
1252
+ "type": "object",
1253
+ "propertyNames": {
1254
+ "type": "string"
1255
+ },
1256
+ "additionalProperties": {}
1257
+ },
1258
+ "leadConvertSettings": {
1259
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_leadconvertsettings.htm",
1260
+ "type": "object",
1261
+ "propertyNames": {
1262
+ "type": "string"
1263
+ },
1264
+ "additionalProperties": {}
1265
+ },
1266
+ "lightningExperienceSettings": {
1267
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_lightningexperiencesettings.htm",
1268
+ "type": "object",
1269
+ "propertyNames": {
1270
+ "type": "string"
1271
+ },
1272
+ "additionalProperties": {}
1273
+ },
1274
+ "liveAgentSettings": {
1275
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_liveagentsettings.htm",
1276
+ "type": "object",
1277
+ "propertyNames": {
1278
+ "type": "string"
1279
+ },
1280
+ "additionalProperties": {}
1281
+ },
1282
+ "liveMessageSettings": {
1283
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_livemessagesettings.htm",
1284
+ "type": "object",
1285
+ "propertyNames": {
1286
+ "type": "string"
1287
+ },
1288
+ "additionalProperties": {}
1289
+ },
1290
+ "macroSettings": {
1291
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_macrosettings.htm",
1292
+ "type": "object",
1293
+ "propertyNames": {
1294
+ "type": "string"
1295
+ },
1296
+ "additionalProperties": {}
1297
+ },
1298
+ "mailMergeSettings": {
1299
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_mailmergesettings.htm",
1300
+ "type": "object",
1301
+ "propertyNames": {
1302
+ "type": "string"
1303
+ },
1304
+ "additionalProperties": {}
1305
+ },
1306
+ "mapAndLocationSettings": {
1307
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_mapandlocationsettings.htm",
1308
+ "type": "object",
1309
+ "propertyNames": {
1310
+ "type": "string"
1311
+ },
1312
+ "additionalProperties": {}
1313
+ },
1314
+ "meetingsSettings": {
1315
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_meetingssettings.htm",
1316
+ "type": "object",
1317
+ "propertyNames": {
1318
+ "type": "string"
1319
+ },
1320
+ "additionalProperties": {}
1321
+ },
1322
+ "mfgServiceConsoleSettings": {
1323
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/mfg_mfgserviceconsolesettings_metadata_api.htm",
1324
+ "type": "object",
1325
+ "propertyNames": {
1326
+ "type": "string"
1327
+ },
1328
+ "additionalProperties": {}
1329
+ },
1330
+ "mobileSettings": {
1331
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_mobilesettings.htm",
1332
+ "type": "object",
1333
+ "propertyNames": {
1334
+ "type": "string"
1335
+ },
1336
+ "additionalProperties": {}
1337
+ },
1338
+ "myDomainSettings": {
1339
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_mydomainsettings.htm",
1340
+ "type": "object",
1341
+ "propertyNames": {
1342
+ "type": "string"
1343
+ },
1344
+ "additionalProperties": {}
1345
+ },
1346
+ "nameSettings": {
1347
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_namesettings.htm",
1348
+ "type": "object",
1349
+ "propertyNames": {
1350
+ "type": "string"
1351
+ },
1352
+ "additionalProperties": {}
1353
+ },
1354
+ "notificationsSettings": {
1355
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_notificationssettings.htm",
1356
+ "type": "object",
1357
+ "propertyNames": {
1358
+ "type": "string"
1359
+ },
1360
+ "additionalProperties": {}
1361
+ },
1362
+ "oauthOidcSettings": {
1363
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_oauthoidcsettings.htm",
1364
+ "type": "object",
1365
+ "propertyNames": {
1366
+ "type": "string"
1367
+ },
1368
+ "additionalProperties": {}
1369
+ },
1370
+ "objectHierarchyRelationship": {
1371
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/mfg_objecthierarchyrelationshipsettings_metadata_api.htm",
1372
+ "type": "object",
1373
+ "propertyNames": {
1374
+ "type": "string"
1375
+ },
1376
+ "additionalProperties": {}
1377
+ },
1378
+ "objectLinkingSettings": {
1379
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_objectlinkingsettings.htm",
1380
+ "type": "object",
1381
+ "propertyNames": {
1382
+ "type": "string"
1383
+ },
1384
+ "additionalProperties": {}
1385
+ },
1386
+ "omniChannelSettings": {
1387
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_omnichannelsettings.htm",
1388
+ "type": "object",
1389
+ "propertyNames": {
1390
+ "type": "string"
1391
+ },
1392
+ "additionalProperties": {}
1393
+ },
1394
+ "opportunityInsightsSettings": {
1395
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_opportunityinsightssettings.htm",
1396
+ "type": "object",
1397
+ "propertyNames": {
1398
+ "type": "string"
1399
+ },
1400
+ "additionalProperties": {}
1401
+ },
1402
+ "opportunityScoreSettings": {
1403
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_opportunityscoresettings.htm",
1404
+ "type": "object",
1405
+ "propertyNames": {
1406
+ "type": "string"
1407
+ },
1408
+ "additionalProperties": {}
1409
+ },
1410
+ "opportunitySettings": {
1411
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_opportunityssettings.htm",
1412
+ "type": "object",
1413
+ "propertyNames": {
1414
+ "type": "string"
1415
+ },
1416
+ "additionalProperties": {}
1417
+ },
1418
+ "orderManagementSettings": {
1419
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_ordermanagementsettings.htm",
1420
+ "type": "object",
1421
+ "propertyNames": {
1422
+ "type": "string"
1423
+ },
1424
+ "additionalProperties": {}
1425
+ },
1426
+ "orderSettings": {
1427
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_ordersettings.htm",
1428
+ "type": "object",
1429
+ "propertyNames": {
1430
+ "type": "string"
1431
+ },
1432
+ "additionalProperties": {}
1433
+ },
1434
+ "orgPreferenceSettings": {
1435
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_orgpreferencesettings.htm",
1436
+ "type": "object",
1437
+ "propertyNames": {
1438
+ "type": "string"
1439
+ },
1440
+ "additionalProperties": {}
1441
+ },
1442
+ "orgSettings": {
1443
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_orgsettings.htm",
1444
+ "type": "object",
1445
+ "propertyNames": {
1446
+ "type": "string"
1447
+ },
1448
+ "additionalProperties": {}
1449
+ },
1450
+ "pardotEinsteinSettings": {
1451
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_pardoteinsteinsettings.htm",
1452
+ "type": "object",
1453
+ "propertyNames": {
1454
+ "type": "string"
1455
+ },
1456
+ "additionalProperties": {}
1457
+ },
1458
+ "pardotSettings": {
1459
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_pardotsettings.htm",
1460
+ "type": "object",
1461
+ "propertyNames": {
1462
+ "type": "string"
1463
+ },
1464
+ "additionalProperties": {}
1465
+ },
1466
+ "partyDataModelSettings": {
1467
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_partydatamodelsettings.htm",
1468
+ "type": "object",
1469
+ "propertyNames": {
1470
+ "type": "string"
1471
+ },
1472
+ "additionalProperties": {}
1473
+ },
1474
+ "pathAssistantSettings": {
1475
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_pathassistantsettings.htm",
1476
+ "type": "object",
1477
+ "propertyNames": {
1478
+ "type": "string"
1479
+ },
1480
+ "additionalProperties": {}
1481
+ },
1482
+ "paymentsSettings": {
1483
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_paymentssettings.htm",
1484
+ "type": "object",
1485
+ "propertyNames": {
1486
+ "type": "string"
1487
+ },
1488
+ "additionalProperties": {}
1489
+ },
1490
+ "picklistSettings": {
1491
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_picklistsettings.htm",
1492
+ "type": "object",
1493
+ "propertyNames": {
1494
+ "type": "string"
1495
+ },
1496
+ "additionalProperties": {}
1497
+ },
1498
+ "platformEncryptionSettings": {
1499
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_platformencryptionsettings.htm",
1500
+ "type": "object",
1501
+ "propertyNames": {
1502
+ "type": "string"
1503
+ },
1504
+ "additionalProperties": {}
1505
+ },
1506
+ "platformEventSettings": {
1507
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_platformeventsettings.htm",
1508
+ "type": "object",
1509
+ "propertyNames": {
1510
+ "type": "string"
1511
+ },
1512
+ "additionalProperties": {}
1513
+ },
1514
+ "predictionBuilderSettings": {
1515
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_predictionbuildersettings.htm",
1516
+ "type": "object",
1517
+ "propertyNames": {
1518
+ "type": "string"
1519
+ },
1520
+ "additionalProperties": {}
1521
+ },
1522
+ "privacySettings": {
1523
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_privacysettings.htm",
1524
+ "type": "object",
1525
+ "propertyNames": {
1526
+ "type": "string"
1527
+ },
1528
+ "additionalProperties": {}
1529
+ },
1530
+ "processFlowMigration": {
1531
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_processflowmigration.htm",
1532
+ "type": "object",
1533
+ "propertyNames": {
1534
+ "type": "string"
1535
+ },
1536
+ "additionalProperties": {}
1537
+ },
1538
+ "productSettings": {
1539
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_productsettings.htm",
1540
+ "type": "object",
1541
+ "propertyNames": {
1542
+ "type": "string"
1543
+ },
1544
+ "additionalProperties": {}
1545
+ },
1546
+ "quoteSettings": {
1547
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_quotessettings.htm",
1548
+ "type": "object",
1549
+ "propertyNames": {
1550
+ "type": "string"
1551
+ },
1552
+ "additionalProperties": {}
1553
+ },
1554
+ "realTimeEventSettings": {
1555
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_realtimeeventsettings.htm",
1556
+ "type": "object",
1557
+ "propertyNames": {
1558
+ "type": "string"
1559
+ },
1560
+ "additionalProperties": {}
1561
+ },
1562
+ "recordPageSettings": {
1563
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_recordpagesettings.htm",
1564
+ "type": "object",
1565
+ "propertyNames": {
1566
+ "type": "string"
1567
+ },
1568
+ "additionalProperties": {}
1569
+ },
1570
+ "retailExecutionSettings": {
1571
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/metadata_api_retexset.htm",
1572
+ "type": "object",
1573
+ "propertyNames": {
1574
+ "type": "string"
1575
+ },
1576
+ "additionalProperties": {}
1577
+ },
1578
+ "salesAgreementSettings": {
1579
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/mfg_salesagreementsettings_metadata_api.htm",
1580
+ "type": "object",
1581
+ "propertyNames": {
1582
+ "type": "string"
1583
+ },
1584
+ "additionalProperties": {}
1585
+ },
1586
+ "sandboxSettings": {
1587
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_sandboxsettings.htm",
1588
+ "type": "object",
1589
+ "propertyNames": {
1590
+ "type": "string"
1591
+ },
1592
+ "additionalProperties": {}
1593
+ },
1594
+ "schemaSettings": {
1595
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_schemasettings.htm",
1596
+ "type": "object",
1597
+ "propertyNames": {
1598
+ "type": "string"
1599
+ },
1600
+ "additionalProperties": {}
1601
+ },
1602
+ "searchSettings": {
1603
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_searchsettings.htm",
1604
+ "type": "object",
1605
+ "propertyNames": {
1606
+ "type": "string"
1607
+ },
1608
+ "additionalProperties": {}
1609
+ },
1610
+ "securitySettings": {
1611
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_securitysettings.htm",
1612
+ "type": "object",
1613
+ "propertyNames": {
1614
+ "type": "string"
1615
+ },
1616
+ "additionalProperties": {}
1617
+ },
1618
+ "serviceCloudVoiceSettings": {
1619
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_servicecloudvoicesettings.htm",
1620
+ "type": "object",
1621
+ "propertyNames": {
1622
+ "type": "string"
1623
+ },
1624
+ "additionalProperties": {}
1625
+ },
1626
+ "serviceSetupAssistantSettings": {
1627
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_servicesetupassistantsettings.htm",
1628
+ "type": "object",
1629
+ "propertyNames": {
1630
+ "type": "string"
1631
+ },
1632
+ "additionalProperties": {}
1633
+ },
1634
+ "sharingSettings": {
1635
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_sharingsettings.htm",
1636
+ "type": "object",
1637
+ "propertyNames": {
1638
+ "type": "string"
1639
+ },
1640
+ "additionalProperties": {}
1641
+ },
1642
+ "siteSettings": {
1643
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_sitesettings.htm",
1644
+ "type": "object",
1645
+ "propertyNames": {
1646
+ "type": "string"
1647
+ },
1648
+ "additionalProperties": {}
1649
+ },
1650
+ "socialCustomerServiceSettings": {
1651
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_socialcustomerservicesettings.htm",
1652
+ "type": "object",
1653
+ "propertyNames": {
1654
+ "type": "string"
1655
+ },
1656
+ "additionalProperties": {}
1657
+ },
1658
+ "socialProfileSettings": {
1659
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_socialprofilesettings.htm",
1660
+ "type": "object",
1661
+ "propertyNames": {
1662
+ "type": "string"
1663
+ },
1664
+ "additionalProperties": {}
1665
+ },
1666
+ "sourceTrackingSettings": {
1667
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_sourcetrackingsettings.htm",
1668
+ "type": "object",
1669
+ "propertyNames": {
1670
+ "type": "string"
1671
+ },
1672
+ "additionalProperties": {}
1673
+ },
1674
+ "subscriptionManagementSettings": {
1675
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_subscriptionmanagementsettings.htm",
1676
+ "type": "object",
1677
+ "propertyNames": {
1678
+ "type": "string"
1679
+ },
1680
+ "additionalProperties": {}
1681
+ },
1682
+ "surveySettings": {
1683
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_surveysettings.htm",
1684
+ "type": "object",
1685
+ "propertyNames": {
1686
+ "type": "string"
1687
+ },
1688
+ "additionalProperties": {}
1689
+ },
1690
+ "territory2Settings": {
1691
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_territory2settings.htm",
1692
+ "type": "object",
1693
+ "propertyNames": {
1694
+ "type": "string"
1695
+ },
1696
+ "additionalProperties": {}
1697
+ },
1698
+ "trailheadSettings": {
1699
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_trailheadsettings.htm",
1700
+ "type": "object",
1701
+ "propertyNames": {
1702
+ "type": "string"
1703
+ },
1704
+ "additionalProperties": {}
1705
+ },
1706
+ "trialOrgSettings": {
1707
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_trialorgsettings.htm",
1708
+ "type": "object",
1709
+ "propertyNames": {
1710
+ "type": "string"
1711
+ },
1712
+ "additionalProperties": {}
1713
+ },
1714
+ "userEngagementSettings": {
1715
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_userengagementsettings.htm",
1716
+ "type": "object",
1717
+ "propertyNames": {
1718
+ "type": "string"
1719
+ },
1720
+ "additionalProperties": {}
1721
+ },
1722
+ "userInterfaceSettings": {
1723
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_userinterfacesettings.htm",
1724
+ "type": "object",
1725
+ "propertyNames": {
1726
+ "type": "string"
1727
+ },
1728
+ "additionalProperties": {}
1729
+ },
1730
+ "userManagementSettings": {
1731
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_usermanagementsettings.htm",
1732
+ "type": "object",
1733
+ "propertyNames": {
1734
+ "type": "string"
1735
+ },
1736
+ "additionalProperties": {}
1737
+ },
1738
+ "voiceSettings": {
1739
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_voicesettings.htm",
1740
+ "type": "object",
1741
+ "propertyNames": {
1742
+ "type": "string"
1743
+ },
1744
+ "additionalProperties": {}
1745
+ },
1746
+ "warrantyLifeCycleMgmtSettings": {
1747
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_mfg_warrantylifecyclemgmtsettings.htm",
1748
+ "type": "object",
1749
+ "propertyNames": {
1750
+ "type": "string"
1751
+ },
1752
+ "additionalProperties": {}
1753
+ },
1754
+ "workDotComSettings": {
1755
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_WorkDotComSettings.htm",
1756
+ "type": "object",
1757
+ "propertyNames": {
1758
+ "type": "string"
1759
+ },
1760
+ "additionalProperties": {}
1761
+ },
1762
+ "workforceEngagementSettings": {
1763
+ "description": "For more details go to https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_workforceengagementsettings.htm",
1764
+ "type": "object",
1765
+ "propertyNames": {
1766
+ "type": "string"
1767
+ },
1768
+ "additionalProperties": {}
1769
+ }
1770
+ },
1771
+ "additionalProperties": {}
1772
+ },
1773
+ "release": {
1774
+ "description": "Same Salesforce release as the Dev Hub org. Options are preview or previous. Can use only during Salesforce release transition periods.",
1775
+ "type": "string",
1776
+ "enum": [
1777
+ "preview",
1778
+ "previous"
1779
+ ]
1780
+ }
1781
+ },
1782
+ "required": [
1783
+ "edition"
1784
+ ],
1785
+ "additionalProperties": {},
1786
+ "$id": "https://schemas.salesforce.com/project-scratch-def.json",
1787
+ "title": "Scratch Org Definition Configuration",
1788
+ "description": "The scratch org definition file contains the configuration values that determine the shape of the scratch org."
1789
+ }