at.glean.annotation

glean.at

Documentation

Reading note on a specific RSS article.

main record

Reading note on a specific RSS article.

Record Key tid Timestamp-based ID

Properties

articleUrl string Required

No description available.

createdAt string datetime Optional

An RFC 3339 formatted timestamp.

feedUrl string Required

No description available.

note string Optional

No description available.

maxGraphemes: 500 graphemes
quote string Optional

No description available.

maxGraphemes: 5000 graphemes
rating integer Optional

No description available.

minimum: 1maximum: 5
tags array of string Optional

No description available.

maxLength: 10 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "feedUrl",
      "articleUrl"
    ],
    "properties": {
      "note": {
        "type": "string",
        "maxGraphemes": 500
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxGraphemes": 50
        },
        "maxLength": 10
      },
      "quote": {
        "type": "string",
        "maxGraphemes": 5000
      },
      "rating": {
        "type": "integer",
        "maximum": 5,
        "minimum": 1
      },
      "feedUrl": {
        "type": "string"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "articleUrl": {
        "type": "string"
      }
    }
  },
  "description": "Reading note on a specific RSS article."
}

Lexicon Garden

@