How the observer wants to be shown on birds.place. One per account; the record key is always `self`. Every field is optional — a missing profile, or a missing field, falls back to what the wider network says about the account (an app.bsky.actor.profile display name, then the handle). This record exists so that never having used Bluesky is a first-class situation.
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
Client-declared timestamp for when the profile was first created. Preserved across edits.
displayName
string
Optional
The name to show beside this observer's sightings, in place of their handle.
maxLength: 640 bytesmaxGraphemes: 64 graphemesupdatedAt
string
datetime
Optional
Client-declared timestamp for the most recent edit.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp for when the profile was first created. Preserved across edits."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp for the most recent edit."
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "The name to show beside this observer's sightings, in place of their handle.",
"maxGraphemes": 64
}
}
},
"description": "How the observer wants to be shown on birds.place. One per account; the record key is always `self`. Every field is optional — a missing profile, or a missing field, falls back to what the wider network says about the account (an app.bsky.actor.profile display name, then the handle). This record exists so that never having used Bluesky is a first-class situation."
}