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

com.atproto.admin.defs

atproto-lexicons.bsky.social

Documentation

accountView object

Properties

deactivatedAt string datetime Optional

An RFC 3339 formatted timestamp.

did string did Required

A decentralized identifier (DID).

email string Optional

No description provided.

emailConfirmedAt string datetime Optional

An RFC 3339 formatted timestamp.

handle string handle Required

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

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

inviteNote string Optional

No description provided.

invitesDisabled boolean Optional

No description provided.

relatedRecords array of unknown Optional

No description provided.

threatSignatures array of ref#threatSignature Optional

No description provided.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "handle",
    "indexedAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "email": {
      "type": "string"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    },
    "invites": {
      "type": "array",
      "items": {
        "ref": "com.atproto.server.defs#inviteCode",
        "type": "ref"
      }
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    },
    "invitedBy": {
      "ref": "com.atproto.server.defs#inviteCode",
      "type": "ref"
    },
    "inviteNote": {
      "type": "string"
    },
    "deactivatedAt": {
      "type": "string",
      "format": "datetime"
    },
    "relatedRecords": {
      "type": "array",
      "items": {
        "type": "unknown"
      }
    },
    "invitesDisabled": {
      "type": "boolean"
    },
    "emailConfirmedAt": {
      "type": "string",
      "format": "datetime"
    },
    "threatSignatures": {
      "type": "array",
      "items": {
        "ref": "#threatSignature",
        "type": "ref"
      }
    }
  }
}
repoBlobRef object

Properties

cid string cid Required

A content identifier (CID) referencing immutable data.

did string did Required

A decentralized identifier (DID).

recordUri string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "cid"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "did": {
      "type": "string",
      "format": "did"
    },
    "recordUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}
repoRef object

Properties

did string did Required

A decentralized identifier (DID).

View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    }
  }
}
statusAttr object

Properties

applied boolean Required

No description provided.

ref string Optional

No description provided.

View raw schema
{
  "type": "object",
  "required": [
    "applied"
  ],
  "properties": {
    "ref": {
      "type": "string"
    },
    "applied": {
      "type": "boolean"
    }
  }
}
threatSignature object

Properties

property string Required

No description provided.

value string Required

No description provided.

View raw schema
{
  "type": "object",
  "required": [
    "property",
    "value"
  ],
  "properties": {
    "value": {
      "type": "string"
    },
    "property": {
      "type": "string"
    }
  }
}

Lexicon Garden

@