APIs.io Engineering Platform · Schema
WebPage
Defines a webpage that is relevant to the query.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| dateLastCrawled | string | The last time that Bing crawled the webpage. The date is in the form, YYYY-MM-DDTHH:MM:SS. For example, 2015-04-13T05:23:39. |
| deepLinks | array | A list of links to related content that Bing found in the website that contains this webpage. The Webpage object in this context includes only the name, url, urlPingSuffix, and snippet fields. |
| displayUrl | string | The display URL of the webpage. The URL is meant for display purposes only and is not well formed. |
| primaryImageOfPage | object | |
| searchTags | array | A list of search tags that the webpage owner specified on the webpage. The API returns only indexed search tags. The name field of the MetaTag object contains the indexed search tag. Search tags begin |
| snippet | string | A snippet of text from the webpage that describes its contents. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WebPage",
"title": "WebPage",
"properties": {
"dateLastCrawled": {
"type": "string",
"description": "The last time that Bing crawled the webpage. The date is in the form, YYYY-MM-DDTHH:MM:SS. For example, 2015-04-13T05:23:39.",
"readOnly": true
},
"deepLinks": {
"type": "array",
"description": "A list of links to related content that Bing found in the website that contains this webpage. The Webpage object in this context includes only the name, url, urlPingSuffix, and snippet fields.",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/WebPage"
}
},
"displayUrl": {
"type": "string",
"description": "The display URL of the webpage. The URL is meant for display purposes only and is not well formed.",
"readOnly": true
},
"primaryImageOfPage": {
"$ref": "#/components/schemas/ImageObject"
},
"searchTags": {
"type": "array",
"description": "A list of search tags that the webpage owner specified on the webpage. The API returns only indexed search tags. The name field of the MetaTag object contains the indexed search tag. Search tags begin with search.* (for example, search.assetId). The content field contains the tag's value.",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/WebMetaTag"
}
},
"snippet": {
"type": "string",
"description": "A snippet of text from the webpage that describes its contents.",
"readOnly": true
}
},
"description": "Defines a webpage that is relevant to the query.",
"allOf": [
{
"$ref": "#/components/schemas/CreativeWork"
}
]
}