online.timtinkers.bot.shoutout

bot.timtinkers.online

Documentation

Record containing a shoutout for a user, typically used during streams to highlight community members.

main record

Record containing a shoutout for a user, typically used during streams to highlight community members.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the shoutout was created

text string Required

The shoutout message text

maxLength: 5000 bytesmaxGraphemes: 500 graphemes
user string did Required

The DID of the user being shouted out

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "user",
      "text",
      "createdAt"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 5000,
        "description": "The shoutout message text",
        "maxGraphemes": 500
      },
      "user": {
        "type": "string",
        "format": "did",
        "description": "The DID of the user being shouted out"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the shoutout was created"
      }
    }
  },
  "description": "Record containing a shoutout for a user, typically used during streams to highlight community members."
}

Lexicon Garden

@