The message a notification refers to.
Properties
attachments
array
of reflex:social.colibri.channel.defs#attachment
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
edited
boolean
Optional
No description available.
facets
array
of reflex:social.colibri.richtext.facet
Required
No description available.
parent
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
text
string
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"text",
"facets",
"createdAt",
"attachments"
],
"properties": {
"text": {
"type": "string"
},
"edited": {
"type": "boolean"
},
"facets": {
"type": "array",
"items": {
"ref": "lex:social.colibri.richtext.facet",
"type": "ref"
}
},
"parent": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"attachments": {
"type": "array",
"items": {
"ref": "lex:social.colibri.channel.defs#attachment",
"type": "ref"
}
}
},
"description": "The message a notification refers to."
}