us.polhem.blog.post

polhem.us

Documentation

Record describing a blog post.

main record

Record describing a blog post.

Record Key tid Timestamp-based ID

Properties

content string Required

No description available.

maxLength: 100000 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

excerpt string Optional

No description available.

maxLength: 1000 bytes
slug string Required

No description available.

maxLength: 100 bytes
tags array of string at-uri Optional

No description available.

title string Required

No description available.

maxLength: 1000 bytes
visibility string Optional

Tells the visibility of the article to AppView.

Allowed: public, url, author
Default: public
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "content",
      "slug",
      "createdAt"
    ],
    "properties": {
      "slug": {
        "type": "string",
        "maxLength": 100
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri",
          "description": "Reference (AT-URI) to a tag record (us.polhem.blog.tag)."
        }
      },
      "title": {
        "type": "string",
        "maxLength": 1000
      },
      "images": {
        "type": "array",
        "items": {
          "ref": "app.bsky.embed.images#image",
          "type": "ref"
        }
      },
      "content": {
        "type": "string",
        "maxLength": 100000
      },
      "excerpt": {
        "type": "string",
        "maxLength": 1000
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "visibility": {
        "enum": [
          "public",
          "url",
          "author"
        ],
        "type": "string",
        "default": "public",
        "description": "Tells the visibility of the article to AppView."
      },
      "featuredImage": {
        "ref": "app.bsky.embed.images#image",
        "type": "ref"
      }
    }
  },
  "description": "Record describing a blog post."
}

Lexicon Garden

@