You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-spec/data/event-schemas/schema/m.marked_unread.yaml

26 lines
771 B
YAML

{
"type": "object",
"title": "Unread Marker Event",
"description": "The current state of the user's unread marker in a room. This event appears in the user's room account data for the room the marker is applicable for.",
"allOf": [{
"$ref": "core-event-schema/event.yaml"
}],
"properties": {
"content": {
"type": "object",
"properties": {
"unread": {
"type": "boolean",
"description": "Whether the room is marked unread or not."
}
},
"required": ["unread"]
},
"type": {
"type": "string",
"enum": ["m.marked_unread"]
}
},
"required": ["type", "content"]
}