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

tools.smokesignal.blahg.content.post

smokesignal.events

Documentation

main record

A blagh post

Record Key any Any valid record key

Properties

attachments array of ref #attachment Optional

No description provided.

content blob Optional

The content of the post

maxSize: 1.0 MB
langs array of string language Optional

Indicates human language of text content.

maxLength: 3 bytes
publishedAt string datetime Optional

An RFC 3339 formatted timestamp.

title string Optional

No description provided.

maxLength: 2000 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "properties": {
      "langs": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "language"
        },
        "maxLength": 3,
        "description": "Indicates human language of text content."
      },
      "title": {
        "type": "string",
        "maxLength": 2000,
        "maxGraphemes": 200
      },
      "content": {
        "type": "blob",
        "accept": [
          "text/plain",
          "text/html",
          "text/markdown"
        ],
        "maxSize": 1000000,
        "description": "The content of the post"
      },
      "attachments": {
        "type": "array",
        "items": {
          "ref": "#attachment",
          "type": "ref"
        }
      },
      "publishedAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A blagh post"
}
attachment object

Properties

alt string Optional

Alt text description of the content, for accessibility.

content blob Required

No description provided.

maxSize: 3.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "content"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "description": "Alt text description of the content, for accessibility."
    },
    "content": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 3000000
    }
  }
}

Lexicon Garden

@