-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
54 lines (54 loc) · 1.29 KB
/
manifest.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
{
"name": "binding-countries",
"vendor": "vtex",
"version": "0.1.2",
"title": "Binding Countries",
"description": "Binding Countries",
"dependencies": {
"vtex.render-server": "8.x"
},
"builders": {
"docs": "0.x"
},
"scripts": {},
"credentialType": "absolute",
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema",
"settingsSchema": {
"title": "Schema",
"type": "object",
"properties": {
"bindings": {
"default": [],
"title": "Bindings",
"type": "array",
"items": {
"default": [],
"type": "object",
"properties": {
"canonicalBaseAddress": {
"title": "Canonical Base Address",
"type": "string"
},
"targetCountries": {
"title": "Target Countries",
"oneOf": [
{
"type": "array",
"title": "Countries code list",
"items": {
"type": "string"
},
"minItems": 1
},
{
"type": "null",
"title": "None"
}
]
}
}
}
}
}
}
}