Backfill in-progress. Some lexicons and records may be missing or incomplete.

chat.bsky.actor.defs

bsky-lexicons.bsky.social

Documentation

profileViewBasic object

Properties

avatar string uri Optional

A valid URI.

chatDisabled boolean Optional

Set to true when the actor cannot actively participate in conversations

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description provided.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
handle string handle Required

An AT Protocol handle (e.g., alice.bsky.social).

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "handle"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "avatar": {
      "type": "string",
      "format": "uri"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    },
    "labels": {
      "type": "array",
      "items": {
        "ref": "com.atproto.label.defs#label",
        "type": "ref"
      }
    },
    "viewer": {
      "ref": "app.bsky.actor.defs#viewerState",
      "type": "ref"
    },
    "associated": {
      "ref": "app.bsky.actor.defs#profileAssociated",
      "type": "ref"
    },
    "displayName": {
      "type": "string",
      "maxLength": 640,
      "maxGraphemes": 64
    },
    "chatDisabled": {
      "type": "boolean",
      "description": "Set to true when the actor cannot actively participate in conversations"
    },
    "verification": {
      "ref": "app.bsky.actor.defs#verificationState",
      "type": "ref"
    }
  }
}

Lexicon Garden

@