quest.sableye.magnet.entry

matt.evil.gay

Documentation

A magnet link entry in the Sableye tracker index.

main record

A magnet link entry in the Sableye tracker index.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

Optional longer description.

maxLength: 10000 bytesmaxGraphemes: 5000 graphemes
fileCount integer Optional

Number of files in the torrent, if known.

infoHash string Optional

The info hash extracted from the magnet URI, hex-encoded.

maxLength: 64 bytes
magnetUri string Required

The magnet URI (magnet:?xt=urn:btih:...)

maxLength: 2048 bytes
name string Required

Display name / title for the torrent.

maxLength: 512 bytesmaxGraphemes: 256 graphemes
sizeBytes integer Optional

Total size in bytes, if known.

tags array of string Optional

Categorization tags.

maxLength: 16 items
torrentFile blob Optional

Optional .torrent file stored on the author's PDS.

maxSize: 5.2 MB
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "magnetUri",
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 512,
        "description": "Display name / title for the torrent.",
        "maxGraphemes": 256
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 128,
          "maxGraphemes": 64
        },
        "maxLength": 16,
        "description": "Categorization tags."
      },
      "infoHash": {
        "type": "string",
        "maxLength": 64,
        "description": "The info hash extracted from the magnet URI, hex-encoded."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "fileCount": {
        "type": "integer",
        "description": "Number of files in the torrent, if known."
      },
      "magnetUri": {
        "type": "string",
        "maxLength": 2048,
        "description": "The magnet URI (magnet:?xt=urn:btih:...)"
      },
      "sizeBytes": {
        "type": "integer",
        "description": "Total size in bytes, if known."
      },
      "description": {
        "type": "string",
        "maxLength": 10000,
        "description": "Optional longer description.",
        "maxGraphemes": 5000
      },
      "torrentFile": {
        "type": "blob",
        "accept": [
          "application/x-bittorrent",
          "application/octet-stream"
        ],
        "maxSize": 5242880,
        "description": "Optional .torrent file stored on the author's PDS."
      }
    }
  },
  "description": "A magnet link entry in the Sableye tracker index."
}

Lexicon Garden

@