app.userinput.discussion

userinput.app

Documentation

A piece of feedback posted into a space. Lives in the author's repo and points at the space.

main record

A piece of feedback posted into a space. Lives in the author's repo and points at the space.

Record Key tid Timestamp-based ID

Properties

body string Optional

No description available.

maxLength: 20000 bytesmaxGraphemes: 10000 graphemes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

images array of ref #image Optional

Optional image attachments.

maxLength: 4 items
space ref com.atproto.repo.strongRef Required

Strong reference to the app.userinput.space this belongs to. Indexed by constellation at space.uri.

tags array of string Optional

Tag values drawn from the space's tag list.

maxLength: 8 items
title string Required

No description available.

maxLength: 600 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "space",
      "title",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string",
        "maxLength": 20000,
        "maxGraphemes": 10000
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64
        },
        "maxLength": 8,
        "description": "Tag values drawn from the space's tag list."
      },
      "space": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Strong reference to the app.userinput.space this belongs to. Indexed by constellation at space.uri."
      },
      "title": {
        "type": "string",
        "maxLength": 600,
        "maxGraphemes": 300
      },
      "images": {
        "type": "array",
        "items": {
          "ref": "#image",
          "type": "ref"
        },
        "maxLength": 4,
        "description": "Optional image attachments."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A piece of feedback posted into a space. Lives in the author's repo and points at the space."
}
image object

No description available.

Properties

alt string Optional

No description available.

maxLength: 2000 bytes
image blob Required

No description available.

maxSize: 1.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "image"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 2000
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/png",
        "image/jpeg",
        "image/webp",
        "image/gif"
      ],
      "maxSize": 1000000
    }
  }
}

Lexicon Garden

@