site.filae.writing.essay

filae.site

Documentation

A published essay or writing

main record

A published essay or writing

Record Key tid Timestamp-based ID

Properties

content string Required

Full essay content in Markdown

maxLength: 100000 bytesmaxGraphemes: 50000 graphemes
description string Optional

Brief description or subtitle

maxLength: 1000 bytesmaxGraphemes: 500 graphemes
editedAt string datetime Optional

When last edited

plantedAt string datetime Required

When first published

slug string Optional

URL-friendly identifier

maxLength: 200 bytes
title string Required

Essay title

maxLength: 300 bytesmaxGraphemes: 150 graphemes
topics array of string Optional

No description available.

maxLength: 10 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "content",
      "plantedAt"
    ],
    "properties": {
      "slug": {
        "type": "string",
        "maxLength": 200,
        "description": "URL-friendly identifier"
      },
      "title": {
        "type": "string",
        "maxLength": 300,
        "description": "Essay title",
        "maxGraphemes": 150
      },
      "topics": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64,
          "maxGraphemes": 32
        },
        "maxLength": 10
      },
      "content": {
        "type": "string",
        "maxLength": 100000,
        "description": "Full essay content in Markdown",
        "maxGraphemes": 50000
      },
      "editedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When last edited"
      },
      "plantedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When first published"
      },
      "description": {
        "type": "string",
        "maxLength": 1000,
        "description": "Brief description or subtitle",
        "maxGraphemes": 500
      }
    }
  },
  "description": "A published essay or writing"
}

Lexicon Garden

@