# fm.onrepeat.feed.jam

> Published by [onrepeat.fm](https://lexicon.garden/identity/did:plc:uvn6p3pn2vwdjgnerqfrdcx4)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.feed.jam)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.feed.jam/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.feed.jam/examples)

## Definitions

### `fm.onrepeat.feed.jam`

**Type**: `record`

A person's current jam — one song.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `via` | `ref` → `com.atproto.repo.strongRef` | No | Attribution for a re-jam: a content-addressed strongRef to the source jam. |
| `title` | `string` | Yes |  |
| `artist` | `string` | Yes |  |
| `caption` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `sourceUrl` | `string` (uri) | Yes |  |
| `artworkUrl` | `string` (uri) | No |  |
| `sourceProvider` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "fm.onrepeat.feed.jam",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "sourceUrl",
          "sourceProvider",
          "title",
          "artist",
          "createdAt"
        ],
        "properties": {
          "via": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Attribution for a re-jam: a content-addressed strongRef to the source jam."
          },
          "title": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "artist": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "caption": {
            "type": "string",
            "maxLength": 1400,
            "maxGraphemes": 140
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "sourceUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "artworkUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "sourceProvider": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "spotify",
              "youtube",
              "youtubemusic",
              "applemusic",
              "soundcloud",
              "bandcamp",
              "tidal",
              "deezer",
              "unknown"
            ]
          }
        }
      },
      "description": "A person's current jam — one song."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
