{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UrlContent", "title": "UrlContent", "description": "Content fetched from a URL", "properties": { "snippet": { "description": "The fetched content snippet", "type": "string" }, "title": { "description": "The title of the page", "type": "string" }, "url": { "description": "The URL from which content was fetched", "type": "string" } }, "required": [ "url", "title", "snippet" ], "type": "object" }