{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/danilo-aguiar-br/browser-automation-cli/docs/schemas/workflow.schema.json",
"title": "workflow command input",
"type": "object",
"description": "Workflow journal DAG (petgraph + SQLite under XDG state)",
"properties": {
"action": {
"enum": [
"run",
"resume",
"status"
],
"type": "string"
},
"journal": {
"type": "string"
},
"manifest": {
"description": "JSON workflow manifest path",
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"action"
],
"additionalProperties": false
}