# fm.freemix.actor.profile

> Published by [lex-publisher.freemix.fm](https://lexicon.garden/identity/did:plc:bt7c6cqevgefnvej5cmgke4g)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:bt7c6cqevgefnvej5cmgke4g/fm.freemix.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bt7c6cqevgefnvej5cmgke4g/fm.freemix.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bt7c6cqevgefnvej5cmgke4g/fm.freemix.actor.profile/examples)

## Definitions

### `fm.freemix.actor.profile#link`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | Link URL |
| `label` | `string` | Yes | Link display label (e.g., 'Spotify', 'SoundCloud') |

### `fm.freemix.actor.profile`

**Type**: `record`

FreeMix-specific profile data that overlays the user's Bluesky profile

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Artist bio (overrides Bluesky bio on FreeMix) |
| `label` | `string` | No | Record label affiliation |
| `links` | `array` | No | External links (Spotify, SoundCloud, Bandcamp, etc.) |
| `roles` | `array` | No | Artist roles (e.g., producer, DJ, vocalist) |
| `genres` | `array` | No | Artist's primary genres |
| `avatarUrl` | `string` (uri) | No | Avatar URL (overrides Bluesky avatar on FreeMix) |
| `createdAt` | `string` (datetime) | Yes | Record creation timestamp |
| `updatedAt` | `string` (datetime) | No | Last update timestamp |
| `displayName` | `string` | No | Display name (overrides Bluesky display name on FreeMix) |
| `proAffiliation` | `string` | No | PRO affiliation (e.g., BMI, ASCAP, PRS, GEMA) |

## Raw Schema

```json
{
  "id": "fm.freemix.actor.profile",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "label",
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "maxLength": 3000,
          "description": "Link URL"
        },
        "label": {
          "type": "string",
          "maxLength": 50,
          "description": "Link display label (e.g., 'Spotify', 'SoundCloud')"
        }
      }
    },
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 1000,
            "description": "Artist bio (overrides Bluesky bio on FreeMix)"
          },
          "label": {
            "type": "string",
            "maxLength": 200,
            "description": "Record label affiliation"
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "#link",
              "type": "ref"
            },
            "maxLength": 10,
            "description": "External links (Spotify, SoundCloud, Bandcamp, etc.)"
          },
          "roles": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 50
            },
            "maxLength": 10,
            "description": "Artist roles (e.g., producer, DJ, vocalist)"
          },
          "genres": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 50
            },
            "maxLength": 10,
            "description": "Artist's primary genres"
          },
          "avatarUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 3000,
            "description": "Avatar URL (overrides Bluesky avatar on FreeMix)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 100,
            "description": "Record creation timestamp"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 100,
            "description": "Last update timestamp"
          },
          "displayName": {
            "type": "string",
            "maxLength": 100,
            "description": "Display name (overrides Bluesky display name on FreeMix)"
          },
          "proAffiliation": {
            "type": "string",
            "maxLength": 100,
            "description": "PRO affiliation (e.g., BMI, ASCAP, PRS, GEMA)"
          }
        }
      },
      "description": "FreeMix-specific profile data that overlays the user's Bluesky profile"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
