Skip to content

Commit 4bb3ab8

Browse files
committed
Change type for enum inputs
1 parent 59a126e commit 4bb3ab8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

manifest.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
},
1616
"DOF": {
1717
"default": 12,
18-
"description": "Degrees of Freedom for registration to standard space",
19-
"type": { "enum": [3, 6, 12]}
18+
"description": "Degrees of Freedom for registration to standard space (allowed: 3, 6, 12)",
19+
"type": "integer",
20+
"enum": [3, 6, 12]
2021
},
2122
"FNIRT": {
2223
"default": 0,
@@ -78,7 +79,8 @@
7879
"SEARCH_SPACE": {
7980
"default": 90,
8081
"description": "Search space for registration to initial structural. 0 = no search; 90 = normal search; 180 = full search",
81-
"type" : {"enum": [0, 90, 180]}
82+
"type" : "integer",
83+
"enum": [0, 90, 180]
8284
},
8385
"STC": {
8486
"default": 1,

0 commit comments

Comments
 (0)