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

dev.ocbwoy3.blueboard.post

ocbwoy3.dev

Documentation

main record
Record Key tid Timestamp-based ID

Properties

attachment blob Optional

The post's attachment blob. Must be present if parent is dev.ocbwoy3.blueboard.board, otherwise AppView will ignore it.

maxSize: 1.0 MB
createdAt string datetime Required

The date and time when the post was created

parent string at-uri Required

Determines the parent of the post. Must either be a `dev.ocbwoy3.blueboard.board` or a `dev.ocbwoy3.blueboard.post`.

text string Required

The post's text

maxLength: 1000 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "text",
      "createdAt",
      "parent"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 1000,
        "description": "The post's text"
      },
      "parent": {
        "type": "string",
        "format": "at-uri",
        "description": "Determines the parent of the post. Must either be a `dev.ocbwoy3.blueboard.board` or a `dev.ocbwoy3.blueboard.post`."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The date and time when the post was created"
      },
      "attachment": {
        "type": "blob",
        "accept": [
          "image/*",
          "video/webm"
        ],
        "maxSize": 1000000,
        "description": "The post's attachment blob. Must be present if parent is dev.ocbwoy3.blueboard.board, otherwise AppView will ignore it."
      }
    }
  }
}

Lexicon Garden

@