A member's gifthood-native profile. The member owns it; the AppView indexes it and layers it over their Bluesky profile field-by-field (a set field overrides Bluesky; an absent field inherits). One record per member, keyed `self`. createdAt is the write-once gifthood join date.
literal:self
Fixed literal value
Properties
avatar
blob
Optional
Avatar image blob in the member's repo. Overrides the Bluesky avatar when set.
maxSize: 1.0 MBbanner
blob
Optional
Banner image blob in the member's repo.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
The gifthood join date. Write-once: edits MUST preserve it.
description
string
Optional
Gifthood bio. Overrides the Bluesky description when set.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesdisplayName
string
Optional
Gifthood display name. Overrides the Bluesky display name when set.
maxLength: 640 bytesmaxGraphemes: 64 graphemespronouns
string
Optional
Free-form pronouns. Overrides the Bluesky pronouns when set.
maxLength: 200 bytesmaxGraphemes: 20 graphemeswebsite
string
uri
Optional
A personal link. Overrides the Bluesky website when set.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Avatar image blob in the member's repo. Overrides the Bluesky avatar when set."
},
"banner": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Banner image blob in the member's repo."
},
"website": {
"type": "string",
"format": "uri",
"description": "A personal link. Overrides the Bluesky website when set."
},
"pronouns": {
"type": "string",
"maxLength": 200,
"description": "Free-form pronouns. Overrides the Bluesky pronouns when set.",
"maxGraphemes": 20
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The gifthood join date. Write-once: edits MUST preserve it."
},
"description": {
"type": "string",
"maxLength": 2560,
"description": "Gifthood bio. Overrides the Bluesky description when set.",
"maxGraphemes": 256
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "Gifthood display name. Overrides the Bluesky display name when set.",
"maxGraphemes": 64
}
}
},
"description": "A member's gifthood-native profile. The member owns it; the AppView indexes it and layers it over their Bluesky profile field-by-field (a set field overrides Bluesky; an absent field inherits). One record per member, keyed `self`. createdAt is the write-once gifthood join date."
}