No description available.
Properties
cid
string
cid
Required
A content identifier (CID) referencing immutable data.
creator
ref
social.grain.actor.defs#profileView
Required
No description available.
indexedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
items
array
of union
Optional
No description available.
Known types:
labels
array
of refcom.atproto.label.defs#label
Optional
No description available.
record
unknown
Required
No description available.
uri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"creator",
"record",
"indexedAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"items": {
"type": "array",
"items": {
"refs": [
"social.grain.photo.defs#photoView"
],
"type": "union"
}
},
"labels": {
"type": "array",
"items": {
"ref": "com.atproto.label.defs#label",
"type": "ref"
}
},
"record": {
"type": "unknown"
},
"creator": {
"ref": "social.grain.actor.defs#profileView",
"type": "ref"
},
"indexedAt": {
"type": "string",
"format": "datetime"
}
}
}