A generic Syntax Club snap document.
Record Key
tid
Timestamp-based ID
Properties
content
union
Required
Structured content of the snap (e.g. files).
Known types:
createdAt
string
datetime
Required
Record creation timestamp (ISO 8601).
description
string
Optional
Optional short summary or context.
maxGraphemes: 1000 graphemestags
array
of
string
Optional
Tags for categorization and discovery.
maxLength: 10 itemstitle
string
Optional
Optional title of the snap.
maxGraphemes: 140 graphemesupdatedAt
string
datetime
Optional
Last update timestamp (ISO 8601).
visibility
string
Optional
Client-level visibility hint.
Known values:
public, unlistedView 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."
}