-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINPUT_SCHEMA.json
37 lines (36 loc) · 1.4 KB
/
INPUT_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
{
"title": "Input schema",
"type": "object",
"schemaVersion": 1,
"properties": {
"notifyEmail": {
"title": "Email to send notification",
"type": "string",
"description": "Notification email will be sent to this address.",
"editor": "textfield",
"prefill": "[email protected]"
},
"street": {
"title": "Street",
"type": "string",
"description": "Address has to match the same format as they have on https://www.kosik.cz/. Try to fill address there the first and then copy it here.",
"editor": "textfield",
"prefill": "Štěpánská 704/61"
},
"city": {
"title": "City",
"type": "string",
"description": "Address has to match the same format as they have on https://www.kosik.cz/. Try to fill address there the first and then copy it here.",
"editor": "textfield",
"prefill": "Praha 1 - Nové Město"
},
"zip": {
"title": "ZIP code",
"type": "string",
"description": "Address has to match the same format as they have on https://www.kosik.cz/. Try to fill address there the first and then copy it here.",
"editor": "textfield",
"prefill": "11000"
}
},
"required": ["notifyEmail", "street", "city", "zip"]
}