UNPKG

1.53 kBJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "id": "scratchOrgDefinitionSchema",
4 "type": "object",
5 "title": "Scratch Org Definition",
6 "description": "The properties and shape of the scratch org to be created",
7 "properties": {
8 "Company": {
9 "type": "string",
10 "title": "Company",
11 "description": "The org's company name"
12 },
13 "Country": {
14 "type": "string",
15 "title": "Country",
16 "description": "The org's country"
17 },
18 "LastName": {
19 "type": "string",
20 "title": "Last Name",
21 "description": "The org's admin user's last name"
22 },
23 "Email": {
24 "type": "string",
25 "title": "Signup Email",
26 "description": "The org's signup email"
27 },
28 "Username": {
29 "type": "string",
30 "title": "Username",
31 "description": "The org's admin user's username"
32 },
33 "Edition": {
34 "type": "string",
35 "title": "Edition",
36 "description": "The org's edition; i.e. Developer, Enterprise, etc."
37 },
38 "OrgPreferences": {
39 "type": "object",
40 "title": "Org Preferences",
41 "description": "The org's preferences"
42 },
43 "Features": {
44 "type": "string",
45 "title": "Features",
46 "description": "The org's features"
47 }
48 },
49 "additionalProperties": false
50}