# club.syntax.feed.snap

> Published by [syntax.club](https://lexicon.garden/identity/did:plc:vwcdvcrlwwvfs4bfmevarcz5)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.feed.snap)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.feed.snap/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.feed.snap/examples)

## Definitions

### `club.syntax.feed.snap`

**Type**: `record`

A generic Syntax Club snap document.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags for categorization and discovery. |
| `title` | `string` | No | Optional title of the snap. |
| `content` | `union` | Yes | Structured content of the snap (e.g. files). |
| `createdAt` | `string` (datetime) | Yes | Record creation timestamp (ISO 8601). |
| `updatedAt` | `string` (datetime) | No | Last update timestamp (ISO 8601). |
| `visibility` | `string` | No | Client-level visibility hint. |
| `description` | `string` | No | Optional short summary or context. |

## Raw Schema

```json
{
  "id": "club.syntax.feed.snap",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
