club.syntax.feed.snap

syntax.club

Documentation

A generic Syntax Club snap document.

main record

A generic Syntax Club snap document.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Record creation timestamp (ISO 8601).

description string Optional

Optional short summary or context.

maxGraphemes: 1000 graphemes
tags array of string Optional

Tags for categorization and discovery.

maxLength: 10 items
title string Optional

Optional title of the snap.

maxGraphemes: 140 graphemes
updatedAt string datetime Optional

Last update timestamp (ISO 8601).

visibility string Optional

Client-level visibility hint.

Known values: public, unlisted
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "content",
      "createdAt"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxGraphemes": 32
        },
        "maxLength": 10,
        "description": "Tags for categorization and discovery."
      },
      "title": {
        "type": "string",
        "description": "Optional title of the snap.",
        "maxGraphemes": 140
      },
      "content": {
        "refs": [
          "club.syntax.content.files"
        ],
        "type": "union",
        "description": "Structured content of the snap (e.g. files)."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Record creation timestamp (ISO 8601)."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Last update timestamp (ISO 8601)."
      },
      "visibility": {
        "type": "string",
        "description": "Client-level visibility hint.",
        "knownValues": [
          "public",
          "unlisted"
        ]
      },
      "description": {
        "type": "string",
        "description": "Optional short summary or context.",
        "maxGraphemes": 1000
      }
    }
  },
  "description": "A generic Syntax Club snap document."
}

Lexicon Garden

@