mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-31 11:33:43 +01:00
It's not needed anymore, and we should remove it while we're in the area. Includes other misc changes to the schema layout.
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
# Copyright 2018 New Vector Ltd
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# See sync_room_event.yaml for why this file is here.
|
|
|
|
allOf:
|
|
- $ref: sync_room_event.yaml
|
|
description: In addition to the Room Event fields, State Events have the following
|
|
additional fields.
|
|
properties:
|
|
prev_content:
|
|
description: Optional. The previous ``content`` for this event. If there is no
|
|
previous content, this key will be missing.
|
|
title: EventContent
|
|
type: object
|
|
state_key:
|
|
description: A unique key which defines the overwriting semantics for this piece
|
|
of room state. This value is often a zero-length string. The presence of this
|
|
key makes this event a State Event.
|
|
type: string
|
|
required:
|
|
- state_key
|
|
title: State Event
|
|
type: object
|