No description available.
Properties
author
ref
is.currents.actor.defs#profileView
Required
Profile view of the account that owns the collection.
cid
string
cid
Required
CID of the collection record.
createdAt
string
datetime
Required
Creation time of the collection record.
description
string
Optional
Optional description shown with the collection.
name
string
Required
Collection display name.
previewImages
array
of stringuri
Optional
Up to four CDN preview image URLs for items in the collection.
maxLength: 4 itemssaveCount
integer
Optional
Number of saves currently in the collection.
uri
string
at-uri
Required
AT-URI of the collection record.
viewer
ref
#collectionViewerState
Optional
Viewer-specific state. Only present when the request is authenticated.
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"author",
"name",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "CID of the collection record."
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the collection record."
},
"name": {
"type": "string",
"description": "Collection display name."
},
"author": {
"ref": "is.currents.actor.defs#profileView",
"type": "ref",
"description": "Profile view of the account that owns the collection."
},
"viewer": {
"ref": "#collectionViewerState",
"type": "ref",
"description": "Viewer-specific state. Only present when the request is authenticated."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Creation time of the collection record."
},
"saveCount": {
"type": "integer",
"description": "Number of saves currently in the collection."
},
"description": {
"type": "string",
"description": "Optional description shown with the collection."
},
"previewImages": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"maxLength": 4,
"description": "Up to four CDN preview image URLs for items in the collection."
}
}
}