# app.tempomusic.feed.post

> Published by [lexicons.tempomusic.fan](https://lexicon.garden/identity/did:plc:pxsuqmultto34oks44m2lgxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.feed.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.feed.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.feed.post/examples)

## Definitions

### `app.tempomusic.feed.post`

**Type**: `record`

A music-related post sharing what the user is experiencing.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | No | Optional commentary about the music. |
| `verb` | `string` | Yes | The action describing the user's relationship to the music. knownValues is informational; AppViews should accept unknown values and apply a graceful fallback (e.g. ignore or render as 'listening'). |
| `langs` | `array` | No | BCP-47 language tags for the text content. Up to three. |
| `labels` | `union` | No | Author-declared content warnings. Uses the standard AT Protocol self-label vocabulary for ecosystem compatibility. |
| `subject` | `union` | Yes | The music being referenced. Open union: third parties or future versions may introduce additional ref types (e.g. playlistRef, concertRef). AppViews must gracefully handle unknown subject $types. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this post was originally created. |

## Raw Schema

```json
{
  "id": "app.tempomusic.feed.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "verb",
          "subject",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "Optional commentary about the music.",
            "maxGraphemes": 300
          },
          "verb": {
            "type": "string",
            "maxLength": 100,
            "description": "The action describing the user's relationship to the music. knownValues is informational; AppViews should accept unknown values and apply a graceful fallback (e.g. ignore or render as 'listening').",
            "knownValues": [
              "listening",
              "addicted",
              "inLove",
              "obsessed",
              "hating",
              "vibing",
              "feelingLike"
            ]
          },
          "langs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            },
            "maxLength": 3,
            "description": "BCP-47 language tags for the text content. Up to three."
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Author-declared content warnings. Uses the standard AT Protocol self-label vocabulary for ecosystem compatibility."
          },
          "subject": {
            "refs": [
              "app.tempomusic.feed.defs#songRef",
              "app.tempomusic.feed.defs#albumRef",
              "app.tempomusic.feed.defs#artistRef"
            ],
            "type": "union",
            "description": "The music being referenced. Open union: third parties or future versions may introduce additional ref types (e.g. playlistRef, concertRef). AppViews must gracefully handle unknown subject $types."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this post was originally created."
          }
        }
      },
      "description": "A music-related post sharing what the user is experiencing."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
