{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebScrapingResponse", "title": "WebScrapingResponse", "type": "object", "description": "Web scraping result", "properties": { "body": { "type": "string", "description": "Full HTML content of the page", "example": "Example Domain..." }, "url": { "type": "string", "format": "uri", "description": "Final URL after redirects", "example": "https://www.example.com" }, "status_code": { "type": "integer", "description": "HTTP status code of the scraped page", "example": 200 } } }