mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
Some checks failed
Spec / 🔎 Validate OpenAPI specifications (push) Has been cancelled
Spec / 🔎 Check Event schema examples (push) Has been cancelled
Spec / 🔎 Check OpenAPI definitions examples (push) Has been cancelled
Spec / 🔎 Check JSON Schemas inline examples (push) Has been cancelled
Spec / ⚙️ Calculate baseURL for later jobs (push) Has been cancelled
Spec / 📢 Run towncrier for changelog (push) Has been cancelled
Spell Check / Spell Check with Typos (push) Has been cancelled
Spec / 🐍 Build OpenAPI definitions (push) Has been cancelled
Spec / 📖 Build the spec (push) Has been cancelled
Spec / 🔎 Validate generated HTML (push) Has been cancelled
Spec / 📖 Build the historical backup spec (push) Has been cancelled
28 lines
969 B
YAML
28 lines
969 B
YAML
$schema: https://json-schema.org/draft/2020-12/schema
|
|
|
|
description: "The content of all call events shares a set of common fields: those
|
|
of room events and some additional VoIP specific fields."
|
|
properties:
|
|
call_id:
|
|
type: string
|
|
description: The ID of the call this event relates to.
|
|
version:
|
|
type: string
|
|
description: The version of the VoIP specification this message adheres to.
|
|
This specification is version 1. This field is a string such that experimental
|
|
implementations can use non-integer versions. This field was an integer
|
|
in the previous spec version and implementations must accept an integer
|
|
0.
|
|
party_id:
|
|
type: string
|
|
description: 'This identifies the party that sent this event. A client may
|
|
choose to re-use the device ID from end-to-end cryptography for the value
|
|
of this field.'
|
|
x-addedInMatrixVersion: "1.7"
|
|
required:
|
|
- call_id
|
|
- version
|
|
- party_id
|
|
title: CallEvent
|
|
type: object
|