flows
This commit is contained in:
parent
21fe567ba6
commit
e7fe303941
6 changed files with 54 additions and 21 deletions
|
@ -1,30 +1,30 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"title": "Process",
|
||||
"description": "Process Description",
|
||||
"title": "Flow",
|
||||
"description": "Workflow Description",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"title": "Process Name",
|
||||
"description": "The name of the Process"
|
||||
"title": "Flow Name",
|
||||
"description": "The name of the Flow"
|
||||
},
|
||||
"depends": {
|
||||
"type": "array",
|
||||
"title": "Process Dependencies",
|
||||
"description": "List of Items a Process depends on",
|
||||
"title": "Flow Dependencies",
|
||||
"description": "List of Items a Flow depends on",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"next": {
|
||||
"type": "string",
|
||||
"title": "Next Process",
|
||||
"description": "The Process that succeeds this one."
|
||||
"title": "Next Flow",
|
||||
"description": "The Flow that succeeds this one."
|
||||
},
|
||||
"produces": {
|
||||
"type": "array",
|
||||
"title": "Produced Items",
|
||||
"description": "Items this Process will produce",
|
||||
"description": "Items this Flow can produce",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue