social.colibri.community

colibri.social

Documentation

A community, or "server", is where users join to interact with each other on Colibri.

main record

A community, or "server", is where users join to interact with each other on Colibri.

Record Key tid Timestamp-based ID

Properties

$type string nsid Optional

The type of the record.

categoryOrder array of string record-key Required

The order of the categories in this community.

description string Required

A description of the community.

maxLength: 256 bytes
Default:
name string Required

The name of the community.

maxLength: 32 bytesminLength: 1 bytes
Default: New Community
picture blob Optional

An image for the community that will be shown to users.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "description",
      "categoryOrder"
    ],
    "properties": {
      "name": {
        "type": "string",
        "default": "New Community",
        "maxLength": 32,
        "minLength": 1,
        "description": "The name of the community."
      },
      "$type": {
        "type": "string",
        "format": "nsid",
        "description": "The type of the record."
      },
      "picture": {
        "type": "blob",
        "accept": [
          "image/jpeg",
          "image/png",
          "image/gif"
        ],
        "description": "An image for the community that will be shown to users."
      },
      "description": {
        "type": "string",
        "default": "",
        "maxLength": 256,
        "description": "A description of the community."
      },
      "categoryOrder": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "record-key",
          "description": "A category in this community."
        },
        "description": "The order of the categories in this community."
      }
    }
  },
  "description": "A community, or \"server\", is where users join to interact with each other on Colibri."
}

Lexicon Garden

@