generated from tercen/template-python-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator.json
36 lines (36 loc) · 1.12 KB
/
operator.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
{
"name": "Template Python operator",
"description": "Mean operator implemented in Python",
"tags": ["template"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/template-python-operator"],
"container":"ghcr.io/tercen/template-python-operator:latest",
"properties": [
{
"kind": "DoubleProperty",
"name": "Property1",
"defaultValue": 42.0,
"description": "Example Double Property"
},
{
"kind": "StringProperty",
"name": "Property2",
"defaultValue": "42",
"description": "Example String Property"
},
{
"kind": "BooleanProperty",
"name": "Property3",
"defaultValue": true,
"description": "Example Boolean Property"
},
{
"kind": "EnumeratedProperty",
"isSingleSelection":true,
"name": "Property4",
"defaultValue": "element2",
"values": ["element1", "element2", "element3"],
"description": "Example Enumerated Property"
}
]
}