A view of a single bookmark (or 'clip').
Properties
author
ref
social.clippr.actor.defs#profileView
Required
A reference to the actor's profile
cid
string
cid
Required
The CID of the clip
indexedAt
string
datetime
Required
When the tag was first indexed by the AppView
record
unknown
Required
The raw record of the clip
uri
string
at-uri
Required
The AT-URI of the clip
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"author",
"record",
"indexedAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "The CID of the clip"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "The AT-URI of the clip"
},
"author": {
"ref": "social.clippr.actor.defs#profileView",
"type": "ref",
"description": "A reference to the actor's profile"
},
"record": {
"type": "unknown",
"description": "The raw record of the clip"
},
"indexedAt": {
"type": "string",
"format": "datetime",
"description": "When the tag was first indexed by the AppView"
}
},
"description": "A view of a single bookmark (or 'clip')."
}