-
Notifications
You must be signed in to change notification settings - Fork 11
/
vss-extension.json
109 lines (109 loc) · 3.31 KB
/
vss-extension.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"manifestVersion": 1.0,
"id": "vsts-rest-multivalue-control",
"version": "2.0.6",
"name": "Rest Multivalue Control",
"description": "A work item form control which allows selection of multiple values from rest apis.",
"publisher": "ottostreifel",
"icons": {
"default": "img/logo.png"
},
"categories": [
"Plan and track"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
},
{
"id": "Microsoft.TeamFoundation.Server",
"version": "[14.4,)"
}
],
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "img",
"addressable": true
}
],
"repository": {
"type": "git",
"uri": "https://github.com/ostreifel/vsts-rest-multivalue"
},
"tags": [
"Work Items",
"Work Item Control",
"Sample"
],
"content": {
"details": {
"path": "storepage.md"
}
},
"scopes": [
"vso.work",
"vso.agentpools",
"vso.build",
"vso.code",
"vso.dashboards",
"vso.entitlements",
"vso.extension",
"vso.extension.data",
"vso.gallery",
"vso.notification",
"vso.packaging",
"vso.project",
"vso.release",
"vso.test"
],
"contributions": [
{
"id": "multivalue-form-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "A work item form control which allows selection of multiple values.",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Rest Multivalue control",
"uri": "dist/multivalue.html",
"height": 50,
"inputs": [
{
"id":"FieldName",
"name": "Select the field for this control. This is the only input needed if the field is a picklist field with suggested values.",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": ["String", "PlainText", "HTML"]
},
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id":"Url",
"name": "Url for the suggested values",
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id":"Property",
"name": "Object property",
"description": "If the url returns an array of objects, select which object property to use as the string. Leave blank if the server returns an array of strings.",
"validation": {
"dataType": "String",
"isRequired": false
}
}
]
}
}
]
}