at.anab.board

faz.ms

Documentation

A named vote board. Lives in the owner's repo; the record key is the board's URL slug.

main record

A named vote board. Lives in the owner's repo; the record key is the board's URL slug.

Record Key any Any valid record key

Properties

archived boolean Optional

No description available.

Default: false
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
name string Required

No description available.

maxLength: 800 bytesmaxGraphemes: 80 graphemes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 800,
        "maxGraphemes": 80
      },
      "archived": {
        "type": "boolean",
        "default": false
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      }
    }
  },
  "description": "A named vote board. Lives in the owner's repo; the record key is the board's URL slug."
}

Lexicon Garden

@