mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
... and other improvements Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
29 lines
706 B
YAML
29 lines
706 B
YAML
---
|
|
allOf:
|
|
- $ref: core-event-schema/event.yaml
|
|
description: |-
|
|
A map of users which are considered ignored is kept in `account_data`
|
|
in an event type of `m.ignored_user_list`.
|
|
properties:
|
|
content:
|
|
type: object
|
|
properties:
|
|
ignored_users:
|
|
type: object
|
|
description: |-
|
|
The map of users to ignore. This is a mapping of user ID to empty
|
|
object.
|
|
patternProperties:
|
|
"^@":
|
|
type: "object"
|
|
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
|