mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-02-21 21:43:43 +01:00
27 lines
669 B
Plaintext
27 lines
669 B
Plaintext
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"allOf": [{
|
|
"$ref": "core#/definitions/room_event"
|
|
}],
|
|
"properties": {
|
|
"content": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": ["delivered", "read"]
|
|
},
|
|
"target_event_id": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["type", "target_event_id"]
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": ["m.room.message.feedback"]
|
|
}
|
|
}
|
|
}
|