No description available.
Properties
description
string
Optional
Page description/excerpt
maxGraphemes: 1000 graphemeshref
string
uri
Required
The URL of the bookmarked page
preview
blob
Optional
Open Graph image for the page
maxSize: 1.0 MBsiteName
string
Optional
Name of the website
maxGraphemes: 100 graphemestitle
string
Required
Page title
maxGraphemes: 300 graphemesView raw schema
{
"type": "object",
"required": [
"href",
"title"
],
"properties": {
"href": {
"type": "string",
"format": "uri",
"required": true,
"description": "The URL of the bookmarked page"
},
"title": {
"type": "string",
"required": true,
"description": "Page title",
"maxGraphemes": 300
},
"preview": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000,
"description": "Open Graph image for the page"
},
"siteName": {
"type": "string",
"description": "Name of the website",
"maxGraphemes": 100
},
"description": {
"type": "string",
"description": "Page description/excerpt",
"maxGraphemes": 1000
}
}
}