fm.freemix.actor.profile

lex-publisher.freemix.fm

Documentation

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

main record

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

Record Key literal:self Fixed literal value

Properties

avatarUrl string uri Optional

Avatar URL (overrides Bluesky avatar on FreeMix)

maxLength: 3000 bytes
bio string Optional

Artist bio (overrides Bluesky bio on FreeMix)

maxLength: 1000 bytes
createdAt string datetime Required

Record creation timestamp

maxLength: 100 bytes
displayName string Optional

Display name (overrides Bluesky display name on FreeMix)

maxLength: 100 bytes
genres array of string Optional

Artist's primary genres

maxLength: 10 items
label string Optional

Record label affiliation

maxLength: 200 bytes
proAffiliation string Optional

PRO affiliation (e.g., BMI, ASCAP, PRS, GEMA)

maxLength: 100 bytes
roles array of string Optional

Artist roles (e.g., producer, DJ, vocalist)

maxLength: 10 items
updatedAt string datetime Optional

Last update timestamp

maxLength: 100 bytes
View raw schema
{
  "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"
}
link object

No description available.

Properties

label string Required

Link display label (e.g., 'Spotify', 'SoundCloud')

maxLength: 50 bytes
url string uri Required

Link URL

maxLength: 3000 bytes
View raw schema
{
  "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')"
    }
  }
}

Lexicon Garden

@