A named folder for organizing publication subscriptions in The Social Wire.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
ISO 8601 timestamp when this folder was created.
icon
string
Optional
Emoji character or short icon name for this folder. If omitted, the UI renders a default folder icon.
maxLength: 128 bytesiconImage
string
uri
Optional
Optional URI for a custom image to use as the folder icon. Takes precedence over 'icon' if both are set.
name
string
Required
Display name for the folder.
maxLength: 128 bytessortOrder
integer
Optional
Position of this folder in the sidebar. Lower values appear first.
Default:
0View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"icon": {
"type": "string",
"maxLength": 128,
"description": "Emoji character or short icon name for this folder. If omitted, the UI renders a default folder icon."
},
"name": {
"type": "string",
"maxLength": 128,
"description": "Display name for the folder."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 timestamp when this folder was created."
},
"iconImage": {
"type": "string",
"format": "uri",
"description": "Optional URI for a custom image to use as the folder icon. Takes precedence over 'icon' if both are set."
},
"sortOrder": {
"type": "integer",
"default": 0,
"description": "Position of this folder in the sidebar. Lower values appear first."
}
}
},
"description": "A named folder for organizing publication subscriptions in The Social Wire."
}