Records a bookmark.
Record Key
tid
Timestamp-based ID
Properties
comments
array
of
ref
blue.rito.feed.bookmark#locale
Required
Title and comment in different languages.
minLength: 1 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
ogpDescription
string
Optional
OGP Description
ogpImage
string
uri
Optional
OGP Image Uri
ogpTitle
string
Optional
OGP Title
subject
string
uri
Required
A valid URI.
tags
array
of
string
Optional
Tags describing the uri's description (max 10 tags, 25 charactors)
maxLength: 10 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"comments",
"subject",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 250,
"minLength": 1,
"maxGraphemes": 25,
"minGraphemes": 1
},
"maxLength": 10,
"description": "Tags describing the uri's description (max 10 tags, 25 charactors)"
},
"subject": {
"type": "string",
"format": "uri"
},
"comments": {
"type": "array",
"items": {
"ref": "blue.rito.feed.bookmark#locale",
"type": "ref"
},
"minLength": 1,
"description": "Title and comment in different languages."
},
"ogpImage": {
"type": "string",
"format": "uri",
"description": "OGP Image Uri"
},
"ogpTitle": {
"type": "string",
"description": "OGP Title"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"ogpDescription": {
"type": "string",
"description": "OGP Description"
}
}
},
"description": "Records a bookmark."
}