Skip to content

Commit e6c61f0

Browse files
committed
config update - configurations removed
1 parent bfe2f78 commit e6c61f0

File tree

1 file changed

+32
-38
lines changed

1 file changed

+32
-38
lines changed

config.json

Lines changed: 32 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,36 @@
11
{
2-
"actions": [
3-
{
4-
"title": "Validate Duplicate MCID",
5-
"name": "validate_duplicate_mcid",
6-
"desc": "Action to validate and report Duplicate MCID in the PDF content",
7-
"icon": "bug_report",
8-
"version": "1.0.0",
9-
"category": "Validation",
10-
"returnCodes": [
11-
0, 1
12-
],
13-
"configurations": [
2+
"actions": [
143
{
15-
"stdout": "${output_txt}",
16-
"title": "Validate Duplicate MCID",
17-
"name": "validate_duplicate_mcid",
18-
"desc": "Validate Duplicate MCID",
19-
"program": "java -jar \"${action_path}/net.pdfix.validate-pdf-1.0.0.jar\" duplicate-mcid -i \"${input_pdf}\""
4+
"title": "Validate Duplicate MCID",
5+
"name": "validate_duplicate_mcid",
6+
"desc": "Validate and report Duplicate MCID in the PDF content",
7+
"icon": "bug_report",
8+
"version": "1.0.0",
9+
"category": "Validation",
10+
"returnCodes": [
11+
0,
12+
1
13+
],
14+
"stdout": "${output_txt}",
15+
"program": "java -jar \"${action_path}/net.pdfix.validate-pdf-1.0.0.jar\" duplicate-mcid -i \"${input_pdf}\"",
16+
"args": [
17+
{
18+
"name": "input_pdf",
19+
"desc": "Path to a PDF document to proccess",
20+
"flags": 2,
21+
"ext": "pdf",
22+
"type": "file_path",
23+
"value": ""
24+
},
25+
{
26+
"name": "output_txt",
27+
"desc": "Path to validation report output",
28+
"flags": 4,
29+
"ext": "txt",
30+
"type": "file_path",
31+
"value": ""
32+
}
33+
]
2034
}
21-
],
22-
"args": [
23-
{
24-
"name": "input_pdf",
25-
"desc": "Path to a PDF document to proccess",
26-
"flags": 2,
27-
"ext": "pdf",
28-
"type": "file_path",
29-
"value": ""
30-
},
31-
{
32-
"name": "output_txt",
33-
"desc": "Path to validation report output",
34-
"flags": 4,
35-
"ext": "txt",
36-
"type": "file_path",
37-
"value": ""
38-
}
39-
]
40-
}
41-
]
35+
]
4236
}

0 commit comments

Comments
 (0)