Backfill in-progress. Some lexicons and records may be missing or incomplete.

dev.ocbwoy3.blueboard.board

ocbwoy3.dev

Documentation

main record
Record Key any Any valid record key

Properties

createdAt string datetime Required

The date and time when the board was created

description string Required

A short description of the board

maxGraphemes: 30 graphemes
nsfw boolean Required

Whether the board is NSFW

title string Required

The title of the board (e.g. /at/)

maxLength: 10 bytes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "description",
      "nsfw",
      "createdAt"
    ],
    "properties": {
      "nsfw": {
        "type": "boolean",
        "description": "Whether the board is NSFW"
      },
      "title": {
        "type": "string",
        "maxLength": 10,
        "description": "The title of the board (e.g. /at/)"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The date and time when the board was created"
      },
      "description": {
        "type": "string",
        "description": "A short description of the board",
        "maxGraphemes": 30
      }
    }
  }
}

Lexicon Garden

@