-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-config-schema.json
More file actions
41 lines (41 loc) · 1.02 KB
/
plugin-config-schema.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"$id": "https://github.com/data-fair/processing-vertvolt/plugin-config",
"type": "object",
"title": "PluginConfig",
"layout": { "title": null },
"properties": {
"url": {
"type": "string",
"title": "URL du répertoire",
"description": "URL du répertoire distant au format ftp://host:port/chemin ou sftp://host:port/chemin",
"examples": ["ftp://ftp.exemple.fr/ftp/Vertvolt", "sftp://sftp.exemple.fr/ftp/Vertvolt"]
},
"username": {
"type": "string",
"title": "Utilisateur",
"layout": {
"props": {
"autocomplete": "suppress"
}
}
},
"password": {
"type": "string",
"title": "Mot de passe",
"layout": {
"props": {
"type": "password",
"autocomplete": "suppress"
}
}
},
"sshKey": {
"type": "string",
"title": "Clé SSH privée (SFTP uniquement)",
"layout": {
"comp": "textarea",
"if": "parent.data?.url?.startsWith('sftp://')"
}
}
}
}