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 bytesbio
string
Optional
Artist bio (overrides Bluesky bio on FreeMix)
maxLength: 1000 bytescreatedAt
string
datetime
Required
Record creation timestamp
maxLength: 100 bytesdisplayName
string
Optional
Display name (overrides Bluesky display name on FreeMix)
maxLength: 100 bytesgenres
array
of
string
Optional
Artist's primary genres
maxLength: 10 itemslabel
string
Optional
Record label affiliation
maxLength: 200 byteslinks
array
of
ref
#link
Optional
External links (Spotify, SoundCloud, Bandcamp, etc.)
maxLength: 10 itemsproAffiliation
string
Optional
PRO affiliation (e.g., BMI, ASCAP, PRS, GEMA)
maxLength: 100 bytesroles
array
of
string
Optional
Artist roles (e.g., producer, DJ, vocalist)
maxLength: 10 itemsupdatedAt
string
datetime
Optional
Last update timestamp
maxLength: 100 bytesView 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"
}