mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-07 00:13:43 +01:00
* Fix the event schema to represent the real world * Add the module to the spec targets * Remove incomplete thought from the client behaviour * Link to the account data API * Minor word choice changes Signed-off-by: Travis Ralston <travpc@gmail.com>
27 lines
629 B
Plaintext
27 lines
629 B
Plaintext
---
|
|
allOf:
|
|
- $ref: core-event-schema/event.yaml
|
|
description: |-
|
|
A map of users which are considered ignored is kept in ``acount_data``
|
|
in an event type of ``m.ignored_user_list``.
|
|
properties:
|
|
content:
|
|
type: object
|
|
properties:
|
|
ignored_users:
|
|
type: object
|
|
patternProperties:
|
|
"^@":
|
|
type: "object"
|
|
title: "Ignored User"
|
|
description: "An empty object for future enhancement"
|
|
x-pattern: "$USER_ID"
|
|
required:
|
|
- ignored_users
|
|
type:
|
|
enum:
|
|
- m.ignored_user_list
|
|
type: string
|
|
title: Ignored User List
|
|
type: object
|