git ssb

2+

cel / scuttlebot.io



Tree: 73bb7c6cea0efa5a8352159d71fc7d30aac10e6b

Files: 73bb7c6cea0efa5a8352159d71fc7d30aac10e6b / tmpl / docs / message-types / post.md

1902 bytesRaw

Post

A post is a text-based message, for a public or private audience. It can be a reply to other posts.

There's not a limit on the length of the text, but all Scuttlebot messages (including their headers) must be less than 8KB.

{
  type: 'post',
  text: String,
  channel: String?,
  root: MsgLink?,
  branch: MsgLink? | MsgLinks?,
  recps: FeedLinks?,
  mentions: Links?
}

Text

text is a markdown string that includes the body of the post. See SSB-Markdown for some Scuttlebot-specific markdown rules.

Channel

channel is optionally used for categorization. It's similar to subreddits or chat channels.

Root and branch

root and branch are for replies. root should point to the topmost message in the thread. branch should point to the message or set of messages in the thread which is being replied to.

In the first reply of a thread, root === branch, and both should be included. root and branch should only point to type: post messages. If the post is about another message-type, use mentions.

Mentions

mentions is a generic reference to other feeds, entities, blobs, or channels/hashtags.

Recps

recps is a list of user-links specifying who the message is for. This is typically used for encrypted messages, to specify who the message was encrypted for, but it can be used in unencrypted messages as well.

Built with git-ssb-web