docs-matrix-spec/data/event-schemas/schema/m.ignored_user_list.yaml
Kévin Commaille 2edfb21d5d
Add support for pattern formats for patternProperties (#1796)
Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
2024-04-24 12:42:34 +01:00

28 lines
715 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-format: "mx-user-id"
required:
- ignored_users
type:
enum:
- m.ignored_user_list
type: string
title: Ignored User List
type: object