app.userinput.status

userinput.app

Documentation

An official status assigned to a discussion. Only honored when authored by the space owner or an appointed moderator. Latest createdAt wins. Lives in the moderator's repo.

main record

An official status assigned to a discussion. Only honored when authored by the space owner or an appointed moderator. Latest createdAt wins. Lives in the moderator's repo.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

note string Optional

No description available.

maxLength: 3000 bytesmaxGraphemes: 1500 graphemes
state string Required

No description available.

Allowed: open, under-review, backlog, planned, in-progress, implemented, declined, duplicate, closed
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "state",
      "createdAt"
    ],
    "properties": {
      "note": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 1500
      },
      "state": {
        "enum": [
          "open",
          "under-review",
          "backlog",
          "planned",
          "in-progress",
          "implemented",
          "declined",
          "duplicate",
          "closed"
        ],
        "type": "string"
      },
      "subject": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "The discussion this status applies to. Indexed by constellation at subject.uri."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "duplicateOf": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "When state is 'duplicate', the canonical discussion this duplicates."
      }
    }
  },
  "description": "An official status assigned to a discussion. Only honored when authored by the space owner or an appointed moderator. Latest createdAt wins. Lives in the moderator's repo."
}

Lexicon Garden

@