mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-21 00:48:38 +01:00
Fix schema of m.receipt EDU (#1636)
It was missing a nesting level for the user ID -> user read receipt map. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
parent
46447e0287
commit
96f88e035c
|
|
@ -0,0 +1 @@
|
||||||
|
Fix schema of `m.receipt` EDU.
|
||||||
|
|
@ -41,7 +41,11 @@ allOf:
|
||||||
# on. At that point, m.read can become optional (maybe).
|
# on. At that point, m.read can become optional (maybe).
|
||||||
"m.read":
|
"m.read":
|
||||||
type: object
|
type: object
|
||||||
description: Read receipts for users in the room.
|
description: |-
|
||||||
|
Read receipts for users in the room. The string key is the user
|
||||||
|
ID the receipt belongs to.
|
||||||
|
additionalProperties:
|
||||||
|
type: object
|
||||||
title: User Read Receipt
|
title: User Read Receipt
|
||||||
properties:
|
properties:
|
||||||
event_ids:
|
event_ids:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue