{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/danilo-aguiar-br/browser-automation-cli/docs/schemas/devtools3p.schema.json",
"title": "devtools3p command input",
"type": "object",
"description": "Third-party tools surface (requires --category-third-party)",
"properties": {
"action": {
"enum": [
"list",
"exec"
],
"type": "string"
},
"name": {
"type": "string"
},
"params": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"action"
],
"additionalProperties": false
}