An initial question that starts a discussion
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
No description available.
maxLength: 10000 bytesminLength: 1 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
forum
string
at-identifier
Required
Either a DID or an AT Protocol handle.
isOpen
boolean
Required
No description available.
tags
array
of
string
Required
No description available.
maxLength: 20 itemsDefault:
[]title
string
Required
No description available.
maxLength: 100 bytesminLength: 1 bytesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"createdAt",
"forum",
"tags",
"isOpen"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 25,
"minLength": 1
},
"default": [],
"maxLength": 20
},
"forum": {
"type": "string",
"format": "at-identifier"
},
"title": {
"type": "string",
"maxLength": 100,
"minLength": 1
},
"isOpen": {
"type": "boolean"
},
"content": {
"type": "string",
"maxLength": 10000,
"minLength": 1
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An initial question that starts a discussion"
}