Maintainer: | Sebastian Kippe seba@kip .pe stian |
Version: | 0.2.0 |
This module stores bookmarks. It is used by https://webmarks.5apps.com/
Bookmarks | |
Schemas | |
bookmarks/ | Represents an archived bookmark. |
bookmarks/ | Represents a bookmark that is not archived. |
bookmarks/ | Represents a bookmark which the user marked for reading later. |
Represents an archived bookmark.
id | A string that uniquely identifies this bookmark (required) |
url | The url of the bookmark (required) |
title | The user-facing string describing the bookmark (required) |
createdAt | DateTime string of document creation |
updatedAt | DateTime string of last update |
description | Like title, but more elaborate |
tags | Array of strings; use tags to give your bookmarks a loose grouping into categories |
thumbnail | A base64-encoded screenshot of the bookmarked page |
Represents a bookmark that is not archived.
id | A string that uniquely identifies this bookmark |
url | The url of the bookmark |
title | The user-facing string describing the bookmark |
createdAt | DateTime string of document creation |
updatedAt | DateTime string of last update |
tags | Array of strings; use tags to give your bookmarks a loose grouping into categories |
Represents a bookmark which the user marked for reading later.
id | A string that uniquely identifies this bookmark |
url | The url of the bookmark |
title | The user-facing string describing the bookmark |
createdAt | DateTime string of document creation |
updatedAt | DateTime string of last update |
unread | Boolean, whether the bookmark is unread (default: true, required) |