No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When this collection was created
description
string
Optional
Optional description of the collection
maxLength: 3000 bytesimage
blob
Optional
Cover image for the collection
name
string
Required
Display name for the collection
maxLength: 64 bytesminLength: 1 bytesupdatedAt
string
datetime
Optional
When this collection was last updated
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "Display name for the collection"
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"description": "Cover image for the collection"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this collection was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When this collection was last updated"
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Optional description of the collection"
}
}
}
}