dev.fudgeu.experimental.atforumv1.feed.post

fudgeu.bsky.social

Documentation

An initial post that starts a discussion

main record

An initial post that starts a discussion

Record Key tid Timestamp-based ID

Properties

category string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

content string Required

No description available.

maxLength: 10000 bytesminLength: 1 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

forum string at-identifier Required

Either a DID or an AT Protocol handle.

solution string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

tags array of string Required

No description available.

maxLength: 20 items
Default: []
title string Required

No description available.

maxLength: 100 bytesminLength: 1 bytes
updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "content",
      "createdAt",
      "category",
      "forum",
      "tags"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 25,
          "minLength": 1
        },
        "default": [],
        "maxLength": 20
      },
      "forum": {
        "type": "string",
        "format": "at-identifier"
      },
      "title": {
        "type": "string",
        "maxLength": 100,
        "minLength": 1
      },
      "content": {
        "type": "string",
        "maxLength": 10000,
        "minLength": 1
      },
      "category": {
        "type": "string",
        "format": "at-uri"
      },
      "solution": {
        "type": "string",
        "format": "at-uri"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "An initial post that starts a discussion"
}

Lexicon Garden

@