No description available.
Record Key
tid
Timestamp-based ID
Properties
color
string
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
guildId
string
Required
No description available.
motto
string
Optional
No description available.
name
string
Required
No description available.
role
string
Required
No description available.
Known values:
leader, officer, membertag
string
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"guildId",
"name",
"tag",
"role",
"createdAt"
],
"properties": {
"tag": {
"type": "string"
},
"name": {
"type": "string"
},
"role": {
"type": "string",
"knownValues": [
"leader",
"officer",
"member"
]
},
"color": {
"type": "string"
},
"motto": {
"type": "string"
},
"guildId": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string"
}
}
}
}