cdb/schema/process.json

34 lines
937 B
JSON
Raw Normal View History

2024-08-27 21:33:09 +00:00
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Process",
"description": "Process Description",
"properties": {
"name": {
"type": "string",
"title": "Process Name",
"description": "The name of the Process"
},
"depends": {
"type": "array",
"title": "Process Dependencies",
"description": "List of Items a Process depends on",
"items": {
"type": "string"
}
},
"next": {
"type": "string",
"title": "Next Process",
"description": "The Process that succeeds this one."
},
"produces": {
"type": "array",
"title": "Produced Items",
"description": "Items this Process will produce",
"items": {
"type": "string"
}
}
}
}