No description available.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"authorDid",
"createdAt"
],
"properties": {
"content": {
"type": "string",
"maxLength": 5000,
"minLength": 1,
"description": "The answer content text"
},
"authorDid": {
"type": "string",
"format": "did",
"description": "DID of the user who wrote this answer content"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the answer content was created"
}
}
}
}