No description available.
Properties
author
string
did
Optional
A decentralized identifier (DID).
cid
string
cid
Optional
A content identifier (CID) referencing immutable data.
comment
string
Optional
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
deleted
boolean
Required
No description available.
indexedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parentUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
rating
integer
Optional
No description available.
minimum: 1maximum: 5subjectUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
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",
"deleted",
"createdAt",
"indexedAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"author": {
"type": "string",
"format": "did"
},
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1
},
"comment": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
},
"deleted": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"parentUri": {
"type": "string",
"format": "at-uri"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"subjectUri": {
"type": "string",
"format": "at-uri"
}
}
}