{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/danilo-aguiar-br/browser-automation-cli/docs/schemas/fill-form.schema.json",
"title": "fill-form command input",
"type": "object",
"description": "Fill multiple fields from JSON array",
"properties": {
"fields": {
"description": "Preferred run-script form: array of {target|uid,value}",
"type": "array"
},
"fields_json": {
"description": "CLI long name --fields-json (avoids shadowing global --json)",
"type": "string"
},
"json": {
"description": "JSON array of {target,value} objects (run/JSON key). CLI flag: --fields-json",
"type": "string"
}
},
"required": [],
"additionalProperties": false
}