A group that bundles accounts together.
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
Avatar image for the group.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
Group creation timestamp.
description
string
Optional
A short description of the group.
maxLength: 300 bytesmaxGraphemes: 3000 graphemesname
string
Required
The display name of the group.
maxLength: 100 bytesminLength: 1 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "The display name of the group."
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Avatar image for the group."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Group creation timestamp."
},
"description": {
"type": "string",
"maxLength": 300,
"description": "A short description of the group.",
"maxGraphemes": 3000
}
}
},
"description": "A group that bundles accounts together."
}