{ "$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" } } }, "required": ["name"] }