output_schema
{ "prompt": "Go to https://books.toscrape.com/catalogue/a-light-in-the-attic_1000/index.html and return the book title and price as JSON", "wait": 300, "output_schema": { "type": "object", "properties": { "name": { "type": "string" }, "price": { "type": "string" } }, "required": [ "name", "price" ], "additionalProperties": false } }