Backfill in-progress. Some lexicons and records may be missing or incomplete.

community.lexicon.bookmarks.bookmark

lexicon.community

Documentation

main record

Record bookmarking a link to come back to later.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

subject string uri Required

A valid URI.

tags array of string Optional

Tags for content the bookmark may be related to, for example 'news' or 'funny videos'

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

Lexicon Garden

@