No description available.
Record Key
tid
Timestamp-based ID
Properties
archived
boolean
Optional
No description available.
Default:
falsecreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 1000 bytesencrypted
boolean
Optional
No description available.
Default:
falseimageBlob
blob
Optional
No description available.
maxSize: 500.0 KBimageUrl
string
uri
Optional
A valid URI.
listUris
array
of
string
at-uri
Optional
References to lists this bookmark belongs to
maxLength: 10 itemsnote
string
Optional
No description available.
maxLength: 10000 bytespinned
boolean
Optional
No description available.
Default:
falsereminder
object
Optional
No description available.
sourceUri
string
at-uri
Optional
Reference if bookmark was saved from another user
summary
string
Optional
AI-generated summary
maxLength: 1000 bytestags
array
of
string
Optional
No description available.
maxLength: 20 itemstitle
string
Required
No description available.
maxLength: 300 bytesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
url
string
uri
Required
The web URL being bookmarked
maxLength: 2048 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"url",
"title",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "The web URL being bookmarked"
},
"note": {
"type": "string",
"maxLength": 10000
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"maxLength": 20
},
"title": {
"type": "string",
"maxLength": 300
},
"pinned": {
"type": "boolean",
"default": false
},
"summary": {
"type": "string",
"maxLength": 1000,
"description": "AI-generated summary"
},
"archived": {
"type": "boolean",
"default": false
},
"imageUrl": {
"type": "string",
"format": "uri"
},
"listUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 10,
"description": "References to lists this bookmark belongs to"
},
"reminder": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "datetime"
},
"note": {
"type": "string",
"maxLength": 500
}
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"encrypted": {
"type": "boolean",
"default": false
},
"imageBlob": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 500000
},
"sourceUri": {
"type": "string",
"format": "at-uri",
"description": "Reference if bookmark was saved from another user"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 1000
}
}
}
}