No description available.
Properties
author
ref
app.bivri.actor.defs#profileViewBasic
Required
No description available.
bookmarkCount
integer
Optional
No description available.
cid
string
cid
Required
A content identifier (CID) referencing immutable data.
commentCount
integer
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
indexedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
labels
union
Optional
Self-label values the author declared on the artwork record. Author metadata, not platform moderation decisions.
langs
array
of stringlanguage
Optional
No description available.
likeCount
integer
Optional
No description available.
media
array
of refapp.bivri.feed.defs#mediaView
Required
No description available.
tags
array
of string
Optional
No description available.
title
string
Required
No description available.
uri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
viewCount
integer
Optional
No description available.
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"author",
"title",
"media",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
}
},
"media": {
"type": "array",
"items": {
"ref": "app.bivri.feed.defs#mediaView",
"type": "ref"
}
},
"title": {
"type": "string"
},
"author": {
"ref": "app.bivri.actor.defs#profileViewBasic",
"type": "ref"
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union",
"description": "Self-label values the author declared on the artwork record. Author metadata, not platform moderation decisions."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"likeCount": {
"type": "integer"
},
"viewCount": {
"type": "integer"
},
"description": {
"type": "string"
},
"commentCount": {
"type": "integer"
},
"bookmarkCount": {
"type": "integer"
}
}
}