Activity sharing preferences
Properties
Activity retention period
Who sees your activity feed
maxLength: 10 bytes
Known values: all, followers, none
Share new items in followers' feeds
View raw schema
{
"type": "object",
"required": [
"shareNewItems",
"shareActivity",
"retentionDays"
],
"properties": {
"retentionDays": {
"type": "integer",
"default": 90,
"description": "Activity retention period"
},
"shareActivity": {
"type": "string",
"maxLength": 10,
"description": "Who sees your activity feed",
"knownValues": [
"all",
"followers",
"none"
]
},
"shareNewItems": {
"type": "boolean",
"description": "Share new items in followers' feeds"
}
},
"description": "Activity sharing preferences"
}
Image aspect ratio
Properties
No description available.
minimum: 1
No description available.
minimum: 1
View raw schema
{
"type": "object",
"properties": {
"width": {
"type": "integer",
"minimum": 1
},
"height": {
"type": "integer",
"minimum": 1
}
},
"description": "Image aspect ratio"
}
Reference to an item in a collection
Properties
An RFC 3339 formatted timestamp.
AT-URI reference to item (always shows latest version)
maxLength: 8192 bytes
View raw schema
{
"type": "object",
"required": [
"uri",
"addedAt",
"order"
],
"properties": {
"uri": {
"type": "string",
"maxLength": 8192,
"description": "AT-URI reference to item (always shows latest version)"
},
"order": {
"type": "integer",
"description": "For custom sorting"
},
"addedAt": {
"type": "string",
"format": "datetime"
}
},
"description": "Reference to an item in a collection"
}
View of a collection with items
Properties
No description available.
A content identifier (CID) referencing immutable data.
No description available.
An RFC 3339 formatted timestamp.
No description available.
maxLength: 1000 bytes
No description available.
No description available.
No description available.
maxLength: 200 bytes
No description available.
No description available.
maxLength: 20 bytes
An RFC 3339 formatted timestamp.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
No description available.
maxLength: 10 bytes
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"name",
"tags",
"type",
"visibility",
"author",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string",
"maxLength": 200
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
}
},
"type": {
"type": "string",
"maxLength": 20
},
"items": {
"type": "array",
"items": {
"ref": "#itemView",
"type": "ref"
}
},
"author": {
"ref": "#profileView",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"itemCount": {
"type": "integer"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"coverImage": {
"type": "blob"
},
"visibility": {
"type": "string",
"maxLength": 10
},
"description": {
"type": "string",
"maxLength": 1000
}
},
"description": "View of a collection with items"
}
Display preferences
Properties
No description available.
maxLength: 10 bytes
Known values: compact, spacious
No description available.
maxLength: 10 bytes
Known values: light, dark, auto
View raw schema
{
"type": "object",
"properties": {
"theme": {
"type": "string",
"maxLength": 10,
"knownValues": [
"light",
"dark",
"auto"
]
},
"gridLayout": {
"type": "string",
"maxLength": 10,
"knownValues": [
"compact",
"spacious"
]
}
},
"description": "Display preferences"
}
Image embedded in an item
Properties
Alt text for accessibility
maxLength: 300 bytes
No description available.
No description available.
maxSize: 5.0 MB
View raw schema
{
"type": "object",
"required": [
"blob"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 300,
"description": "Alt text for accessibility"
},
"blob": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 5000000
},
"aspectRatio": {
"ref": "#aspectRatio",
"type": "ref"
}
},
"description": "Image embedded in an item"
}
View of an item with metadata
Properties
No description available.
No description available.
maxLength: 100 bytes
A content identifier (CID) referencing immutable data.
An RFC 3339 formatted timestamp.
No description available.
maxLength: 3000 bytes
A valid URI.
maxLength: 2048 bytes
No description available.
No description available.
No description available.
No description available.
No description available.
maxLength: 300 bytes
An RFC 3339 formatted timestamp.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
No description available.
maxLength: 10 bytes
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"title",
"tags",
"images",
"visibility",
"author",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
}
},
"title": {
"type": "string",
"maxLength": 300
},
"author": {
"ref": "#profileView",
"type": "ref"
},
"images": {
"type": "array",
"items": {
"ref": "#itemImage",
"type": "ref"
}
},
"category": {
"type": "string",
"maxLength": 100
},
"metadata": {
"type": "unknown"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"visibility": {
"type": "string",
"maxLength": 10
},
"description": {
"type": "string",
"maxLength": 3000
},
"externalLink": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"reactionCount": {
"type": "integer"
}
},
"description": "View of an item with metadata"
}
Notification preferences
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"reactions",
"follows",
"comments"
],
"properties": {
"follows": {
"type": "boolean"
},
"comments": {
"type": "boolean"
},
"reactions": {
"type": "boolean"
}
},
"description": "Notification preferences"
}
Privacy preferences
Properties
Let others react to your items
View raw schema
{
"type": "object",
"required": [
"allowReactions",
"allowComments",
"indexable"
],
"properties": {
"indexable": {
"type": "boolean",
"description": "Appear in search results"
},
"allowComments": {
"type": "boolean",
"description": "Let others comment"
},
"allowReactions": {
"type": "boolean",
"description": "Let others react to your items"
}
},
"description": "Privacy preferences"
}
View of a user profile
Properties
No description available.
No description available.
No description available.
maxLength: 2048 bytes
No description available.
maxLength: 64 bytes
No description available.
maxLength: 253 bytes
No description available.
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"maxLength": 2048
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
}
},
"avatar": {
"type": "blob"
},
"banner": {
"type": "blob"
},
"handle": {
"type": "string",
"maxLength": 253
},
"displayName": {
"type": "string",
"maxLength": 64
}
},
"description": "View of a user profile"
}
Subject of a reaction
Properties
A content identifier (CID) referencing immutable data.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
}
},
"description": "Subject of a reaction"
}
View of a reaction to content
Properties
No description available.
An RFC 3339 formatted timestamp.
No description available.
Emoji shortcode
maxLength: 100 bytes
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"actor",
"subject",
"type",
"createdAt"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"type": {
"type": "string",
"maxLength": 100,
"description": "Emoji shortcode"
},
"actor": {
"ref": "#profileView",
"type": "ref"
},
"subject": {
"ref": "#reactionSubject",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
},
"description": "View of a reaction to content"
}
A reference to an item featured in a user's showcase (hydrated at read time)
Properties
An RFC 3339 formatted timestamp.
Display order (0 = first)
AT-URI reference to the item (e.g., at://did:plc:.../social.showcase.library.item/abc123)
View raw schema
{
"type": "object",
"required": [
"uri",
"addedAt",
"order"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI reference to the item (e.g., at://did:plc:.../social.showcase.library.item/abc123)"
},
"order": {
"type": "integer",
"description": "Display order (0 = first)"
},
"addedAt": {
"type": "string",
"format": "datetime"
}
},
"description": "A reference to an item featured in a user's showcase (hydrated at read time)"
}
Visibility preferences
Properties
No description available.
maxLength: 10 bytes
Known values: public, private
No description available.
maxLength: 10 bytes
Known values: public, unlisted, private
No description available.
maxLength: 10 bytes
Known values: public, unlisted, private
View raw schema
{
"type": "object",
"required": [
"profileVisibility",
"defaultItemVisibility",
"defaultCollectionVisibility"
],
"properties": {
"profileVisibility": {
"type": "string",
"maxLength": 10,
"knownValues": [
"public",
"unlisted",
"private"
]
},
"defaultItemVisibility": {
"type": "string",
"maxLength": 10,
"knownValues": [
"public",
"unlisted",
"private"
]
},
"defaultCollectionVisibility": {
"type": "string",
"maxLength": 10,
"knownValues": [
"public",
"private"
]
}
},
"description": "Visibility preferences"
}