# at.eptss.song

> Published by [eptss.at](https://lexicon.garden/identity/did:plc:pf6izdjdonyd46isl3txwu4g)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pf6izdjdonyd46isl3txwu4g/at.eptss.song)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pf6izdjdonyd46isl3txwu4g/at.eptss.song/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pf6izdjdonyd46isl3txwu4g/at.eptss.song/examples)

## Definitions

### `at.eptss.song`

**Type**: `object`

A song, used inline (with $type) as an at.atjam.round subject or inside at.eptss records. Not a standalone record.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `artist` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "at.eptss.song",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "title",
        "artist"
      ],
      "properties": {
        "title": {
          "type": "string",
          "maxLength": 5120,
          "maxGraphemes": 512
        },
        "artist": {
          "type": "string",
          "maxLength": 5120,
          "maxGraphemes": 512
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        }
      },
      "description": "A song, used inline (with $type) as an at.atjam.round subject or inside at.eptss records. Not a standalone record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
