Properties
| Name | Type | Description |
|---|---|---|
| snippet | string | The fetched content snippet |
| title | string | The title of the page |
| url | string | The URL from which content was fetched |
JSON Schema
{
"$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"
}