Record representing a collection of AT Protocol records.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Description of the collection.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesicon
string
Optional
An emoji to represent the collection.
maxLength: 32 bytesminLength: 1 bytesmaxGraphemes: 1 graphemesname
string
Required
Display name for the collection.
maxLength: 64 bytesminLength: 1 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"icon": {
"type": "string",
"maxLength": 32,
"minLength": 1,
"description": "An emoji to represent the collection.",
"maxGraphemes": 1
},
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "Display name for the collection."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Description of the collection.",
"maxGraphemes": 300
}
}
},
"description": "Record representing a collection of AT Protocol records."
}