-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.json
64 lines (64 loc) · 2.01 KB
/
form.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
55
56
57
58
59
60
61
62
63
64
[
{
"title": "General Information",
"questions": [
{
"label": "Service Name",
"type": "string",
"placeholder": "Enter the name of the service"
},
{
"label": "Service Provider",
"type": "string",
"placeholder": "Enter the name of the organization providing this service"
},
{
"label": "Area of Application",
"type": "select",
"options": [
"Planning",
"Harmonization (e.g. Curation, Terminology)",
"Access/Archival",
"Discover/Exploration",
"Processing/Visualization",
"Support/Training",
"Other"
]
},
{
"label": "Short Description",
"type": "textarea",
"placeholder": "Short description of what this service is about"
},
{
"label": "Stage of Development",
"type": "select",
"options": [
"Development",
"Demonstrator",
"Productive"
]
},
{
"label": "Version",
"type": "string",
"placeholder": "Current version of the service"
},
{
"label": "Documentation",
"type": "string",
"placeholder": "Link to Documentation"
},
{
"label": "Terms of Use",
"type": "string",
"placeholder": "Link to Terms of Use"
},
{
"label": "License",
"type": "select",
"optionsUrl": "https://raw.githubusercontent.com/spdx/license-list-data/main/json/licenses.json"
}
]
}
]