-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathschema.json
More file actions
79 lines (79 loc) · 2.45 KB
/
schema.json
File metadata and controls
79 lines (79 loc) · 2.45 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/amtrack/sfdx-browserforce-plugin/src/plugins/schema.json",
"title": "Browserforce Configuration",
"description": "The browserforce config file contains the configuration values that defines browser automation tasks for Salesforce orgs.",
"type": "object",
"properties": {
"settings": {
"properties": {
"userAccessPolicies": {
"$ref": "./user-access-policies/schema.json"
},
"salesforceCpqConfig": {
"$ref": "./salesforce-cpq-config/schema.json"
},
"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"
},
"emailDeliverability": {
"$ref": "./email-deliverability/schema.json"
},
"lightningExperienceSettings": {
"$ref": "./lightning-experience-settings/schema.json"
},
"activitySettings": {
"$ref": "./activity-settings/schema.json"
},
"customerPortal": {
"$ref": "./customer-portal/schema.json"
},
"densitySettings": {
"$ref": "./density-settings/schema.json"
},
"einsteinBots": {
"$ref": "./einstein-bots/schema.json"
},
"historyTracking": {
"$ref": "./history-tracking/schema.json"
},
"homePageLayouts": {
"$ref": "./home-page-layouts/schema.json"
},
"omniChannelSettings": {
"$ref": "./omni-channel-settings/schema.json"
},
"permissionSets": {
"$ref": "./permission-sets/schema.json"
},
"salesforceToSalesforce": {
"$ref": "./salesforce-to-salesforce/schema.json"
},
"security": {
"$ref": "./security/schema.json"
},
"serviceChannels": {
"$ref": "./service-channels/schema.json"
},
"slack": {
"$ref": "./slack/schema.json"
}
}
}
}
}