An alter ego profile record for use on "Bluesky on Crack".
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
New profile picture
maxSize: 1.0 MBbanner
blob
Optional
New profile banner
maxSize: 1.0 MBdescription
string
Optional
New profile bio (e.g. [[#1 Rated Salesman1997]])
maxLength: 3000 bytesdisplayName
string
Optional
New display name (e.g. Spamton G. Spamton)
maxLength: 64 bytesminLength: 1 byteshandle
string
Optional
New profile handle (e.g. spamton.bigshot), can have ANY DOMAIN.
maxLength: 64 bytesminLength: 1 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [],
"properties": {
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1048576,
"description": "New profile picture"
},
"banner": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1048576,
"description": "New profile banner"
},
"handle": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "New profile handle (e.g. spamton.bigshot), can have ANY DOMAIN."
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "New profile bio (e.g. [[#1 Rated Salesman1997]])"
},
"displayName": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "New display name (e.g. Spamton G. Spamton)"
}
}
},
"description": "An alter ego profile record for use on \"Bluesky on Crack\"."
}