# ch.indiemusi.social.song

> Published by [indiemusi.ch](https://lexicon.garden/identity/did:plc:lcmrbur2pydmpelfcs7fjbdx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lcmrbur2pydmpelfcs7fjbdx/ch.indiemusi.social.song)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lcmrbur2pydmpelfcs7fjbdx/ch.indiemusi.social.song/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lcmrbur2pydmpelfcs7fjbdx/ch.indiemusi.social.song/examples)

## Definitions

### `ch.indiemusi.social.song`

**Type**: `record`

A social song, that needs a groups of listeners to be fully enjoyed.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name of the song |
| `joinersNeeded` | `integer` | Yes | Number of joiners needed to start the full listening experience |

## Raw Schema

```json
{
  "id": "ch.indiemusi.social.song",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "joinersNeeded"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "minLength": 1,
            "description": "Name of the song",
            "maxGraphemes": 64
          },
          "joinersNeeded": {
            "type": "integer",
            "minimum": 1,
            "description": "Number of joiners needed to start the full listening experience"
          }
        }
      },
      "description": "A social song, that needs a groups of listeners to be fully enjoyed."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
