-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtask.schema.json
More file actions
33 lines (33 loc) · 867 Bytes
/
Copy pathtask.schema.json
File metadata and controls
33 lines (33 loc) · 867 Bytes
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
{
"type": "object",
"required": [
"name",
"type",
"input"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the task. Task names must be unique within a flow. Likewise, flow names must be unique within a namespace."
},
"type": {
"type": "string",
"description": "The type of the task. The type must be registered into Orchestrator for the task to be executed later."
},
"description": {
"type": "string",
"description": "The description of the task. "
},
"timeout": {
"type": "string",
"description": "The execution duration after which the task will be considered to have timed out."
},
"input": {
"type": "object",
"description": "The input of the task.",
"patternProperties": {
"^.*$": {}
}
}
}
}