A user's forum signature, displayed below their posts. Singleton record (one per user).
Record Key
literal:self
Fixed literal value
Properties
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"description": "Signature content. Plain text or markdown depending on forum configuration.",
"maxGraphemes": 300
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A user's forum signature, displayed below their posts. Singleton record (one per user)."
}