Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.
Record Key
any
Any valid record key
Properties
acceptsInteractions
boolean
Optional
Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions
avatar
blob
Optional
No description provided.
maxSize: 1.0 MBcontentMode
string
Optional
No description provided.
Known values:
app.bsky.feed.defs#contentModeUnspecified, app.bsky.feed.defs#contentModeVideocreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description provided.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdescriptionFacets
array
of
ref
app.bsky.richtext.facet
Optional
No description provided.
did
string
did
Required
A decentralized identifier (DID).
displayName
string
Required
No description provided.
maxLength: 240 bytesmaxGraphemes: 24 graphemeslabels
union
Optional
Self-label values
Known types:
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"displayName",
"createdAt"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union",
"description": "Self-label values"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"contentMode": {
"type": "string",
"knownValues": [
"app.bsky.feed.defs#contentModeUnspecified",
"app.bsky.feed.defs#contentModeVideo"
]
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"displayName": {
"type": "string",
"maxLength": 240,
"maxGraphemes": 24
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
},
"acceptsInteractions": {
"type": "boolean",
"description": "Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions"
}
}
},
"description": "Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository."
}