-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
92 lines (92 loc) · 2.9 KB
/
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
{
"displayName": "WOGAA",
"name": "wogaa-sg",
"platform": "web",
"version": "1.0.0",
"description": "Unofficial extension to add Whole-of-Government Application Analytics to your website to improve Singapore government services with data.",
"author": {
"name": "Yuhui",
"url": "https://yuhui.sg",
"email": "dev@yuhui.sg"
},
"exchangeUrl": "https://exchange.adobe.com/apps/ec/600017",
"iconPath": "wogaa-sg-icon.svg",
"viewBasePath": "src/view/",
"configuration": {
"viewPath": "configuration/configuration.html",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {},
"additionalProperties": false
}
},
"actions": [
{
"displayName": "Implement Informational Service",
"name": "implement-informational-service",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {},
"additionalProperties": false
},
"libPath": "src/lib/actions/implementInformationalService.js",
"viewPath": "actions/implementInformationalService.html"
},
{
"displayName": "Implement Transactional Service",
"name": "implement-transactional-service",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"type": {
"description": "Type of transactional service.",
"type": "string",
"enum": [ "start", "complete" ],
"default": "start"
},
"trackingId": {
"description": "Tracking ID created at WOGAA.sg for the transaction.",
"type": "string",
"minLength": 1
},
"uniqueTransactionId": {
"description": "Unique transaction ID for the transaction.",
"type": ["string", "null"],
"default": null
}
},
"additionalProperties": false,
"required": [
"type",
"trackingId"
]
},
"libPath": "src/lib/actions/implementTransactionalService.js",
"viewPath": "actions/implementTransactionalService.html"
},
{
"displayName": "Correlate Sentiments with Agency's Data",
"name": "correlate-sentiments-with-agencys-data",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"agencyTxnId": {
"description": "Unique identifier to correlate agency's data with Sentiments",
"type": "string",
"minLength": 1
}
},
"additionalProperties": false,
"required": [
"agencyTxnId"
]
},
"libPath": "src/lib/actions/correlateSentimentsWithAgencysData.js",
"viewPath": "actions/correlateSentimentsWithAgencysData.html"
}
]
}