A list of posts for curation, bookmarking, or organization
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
Optional avatar image for the list
maxSize: 1.0 MBcreatedAt
string
datetime
Required
When the list was created
description
string
Optional
Optional description of the list
maxLength: 300 bytesname
string
Required
Display name for the list
maxLength: 64 bytestags
array
of
string
Optional
Tags for categorizing the list
maxLength: 10 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"description": "Display name for the list"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 32
},
"maxLength": 10,
"description": "Tags for categorizing the list"
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Optional avatar image for the list"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the list was created"
},
"description": {
"type": "string",
"maxLength": 300,
"description": "Optional description of the list"
}
}
},
"description": "A list of posts for curation, bookmarking, or organization"
}