This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
forked from amtrack/sfdx-browserforce-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.json
61 lines (61 loc) · 1.94 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/amtrack/sfdx-browserforce-plugin/src/plugins/schema.json",
"title": "Browserforce Definition Configuration",
"description": "The browserforce definition file contains the configuration values that defines browser automation tasks for Salesforce orgs.",
"type": "object",
"properties": {
"settings": {
"properties": {
"companyInformation": {
"$ref": "./company-information/schema.json"
},
"opportunitySplits": {
"$ref": "./opportunity-splits/schema.json"
},
"relateContactToMultipleAccounts": {
"$ref": "./relate-contact-to-multiple-accounts/schema.json"
},
"highVelocitySalesSettings": {
"$ref": "./high-velocity-sales-settings/schema.json"
},
"recordTypes": {
"$ref": "./record-types/schema.json"
},
"picklists": {
"$ref": "./picklists/schema.json"
},
"deferSharingCalculation": {
"$ref": "./defer-sharing-calculation/schema.json"
},
"emailDeliverability": {
"$ref": "./email-deliverability/schema.json"
},
"lightningExperienceSettings": {
"$ref": "./lightning-experience-settings/schema.json"
},
"activitySettings": {
"$ref": "./activity-settings/schema.json"
},
"communities": {
"$ref": "./communities/schema.json"
},
"customerPortal": {
"$ref": "./customer-portal/schema.json"
},
"densitySettings": {
"$ref": "./density-settings/schema.json"
},
"homePageLayouts": {
"$ref": "./home-page-layouts/schema.json"
},
"salesforceToSalesforce": {
"$ref": "./salesforce-to-salesforce/schema.json"
},
"security": {
"$ref": "./security/schema.json"
}
}
}
}
}