{
"lexicon": 1,
"id": "community.lexicon.bookmarks.bookmark",
"defs": {
"main": {
"type": "record",
"description": "Record bookmarking a link to come back to later.",
"key": "tid",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"tags": {
"type": "array",
"description": "Tags for content the bookmark may be related to, for example 'news' or 'funny videos'",
"items": {
"type": "string"
}
}
}
}
}
}
}