matrix-spec/data/event-schemas/schema/m.ignored_user_list.yaml
Kévin Commaille ffa576f932
Fix a few events/endpoints schemas for better rendering
Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
2023-09-13 16:36:33 +02:00

27 lines
638 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"
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