This commit is contained in:
JMARyA 2024-09-09 21:49:36 +02:00
parent 21fe567ba6
commit e7fe303941
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 54 additions and 21 deletions

View file

@ -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"
}