app.userinput.space

userinput.app

Documentation

A feedback space created by an organization. Lives in the owner's repo; the owner DID is the repo it is stored in.

main record

A feedback space created by an organization. Lives in the owner's repo; the owner DID is the repo it is stored in.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 3000 bytesmaxGraphemes: 1500 graphemes
icon blob Optional

Optional space icon/logo.

maxSize: 1.0 MB
name string Required

No description available.

maxLength: 200 bytesmaxGraphemes: 100 graphemes
tags array of ref #tag Optional

The set of categories feedback in this space may be filed under.

maxLength: 24 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "icon": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 1000000,
        "description": "Optional space icon/logo."
      },
      "name": {
        "type": "string",
        "maxLength": 200,
        "maxGraphemes": 100
      },
      "tags": {
        "type": "array",
        "items": {
          "ref": "#tag",
          "type": "ref"
        },
        "maxLength": 24,
        "description": "The set of categories feedback in this space may be filed under."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 1500
      }
    }
  },
  "description": "A feedback space created by an organization. Lives in the owner's repo; the owner DID is the repo it is stored in."
}
tag object

No description available.

Properties

label string Required

Human-readable display label.

maxLength: 64 bytes
value string Required

Stable machine value stored on discussions.

maxLength: 64 bytes
View raw schema
{
  "type": "object",
  "required": [
    "value",
    "label"
  ],
  "properties": {
    "label": {
      "type": "string",
      "maxLength": 64,
      "description": "Human-readable display label."
    },
    "value": {
      "type": "string",
      "maxLength": 64,
      "description": "Stable machine value stored on discussions."
    }
  }
}

Lexicon Garden

@