matrix-spec/data/event-schemas/examples/m.room.image_pack.yaml
jpcshka 38d83b75b8
Add event examples and address review comments
Signed-off-by: jpcshka <189279532+jpcshka@users.noreply.github.com>
2026-06-24 19:30:31 +03:00

30 lines
643 B
YAML

{
"$ref": "core/state_event.json",
"type": "m.room.image_pack",
"state_key": "",
"content": {
"images": {
"cat_wave": {
"url": "mxc://example.org/abc123",
"body": "a waving cat",
"info": {
"mimetype": "image/png",
"w": 512,
"h": 512,
"size": 84400
}
},
"cat_nap": {
"url": "mxc://example.org/def456",
"body": "a sleeping cat"
}
},
"pack": {
"display_name": "Cats",
"avatar_url": "mxc://example.org/abc123",
"usage": ["emoticon"],
"attribution": "drawn by @alice:example.org"
}
}
}