{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/danilo-aguiar-br/browser-automation-cli/docs/schemas/map.schema.json",
"title": "map command input",
"type": "object",
"description": "Map site URLs from a seed (HTTP)",
"properties": {
"limit": {
"minimum": 1,
"type": "integer"
},
"max_depth": {
"minimum": 0,
"type": "integer"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"additionalProperties": false
}