mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-05-16 15:00:42 +02:00
25 lines
534 B
YAML
25 lines
534 B
YAML
|
|
---
|
||
|
|
$schema: https://json-schema.org/draft/2020-12/schema
|
||
|
|
|
||
|
|
allOf:
|
||
|
|
- $ref: core-event-schema/event.yaml
|
||
|
|
description: |-
|
||
|
|
Allows clients to track user preferences about key backup.
|
||
|
|
properties:
|
||
|
|
content:
|
||
|
|
type: object
|
||
|
|
properties:
|
||
|
|
enabled:
|
||
|
|
type: boolean
|
||
|
|
description: |-
|
||
|
|
True if the user chose to enable key backup. False if the user chose
|
||
|
|
to disable key backup.
|
||
|
|
required:
|
||
|
|
- enabled
|
||
|
|
type:
|
||
|
|
type: string
|
||
|
|
enum:
|
||
|
|
- m.key_backup
|
||
|
|
title: Key Backup Event
|
||
|
|
type: object
|