mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-26 02:48:37 +01:00
Attempts to make the /sync documentation better represent fact as it currently stands - in particular document the structure of the returned events.
15 lines
439 B
JSON
15 lines
439 B
JSON
{
|
|
"type": "object",
|
|
"allOf": [{"$ref":"definitions/room_event_batch.json"}],
|
|
"properties": {
|
|
"limited": {
|
|
"type": "boolean",
|
|
"description": "True if the number of events returned was limited by the ``limit`` on the filter"
|
|
},
|
|
"prev_batch": {
|
|
"type": "string",
|
|
"description": "If the batch was limited then this is a token that can be supplied to the server to retrieve earlier events"
|
|
}
|
|
}
|
|
}
|