Skip to content

Commit

Permalink
Add the deprecated field to OpenAPI definitions and JSON Schemas
Browse files Browse the repository at this point in the history
I did a quick search of the "deprecated" word in the data folder and set the
field where the description says that a property is deprecated.

This does not change the rendering of the spec because the
descriptions already talk about the deprecation,
but it can be used by tools that rely on the OpenAPI definitions and JSON Schemas.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
  • Loading branch information
zecakeh committed Sep 4, 2024
1 parent 415fb43 commit a7d3a73
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions data/api/client-server/joining.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ paths:
type: string
- in: query
name: server_name
deprecated: true
x-changedInMatrixVersion:
"1.12": |-
This parameter has been deprecated in favour of `via` and will be removed in
Expand Down
1 change: 1 addition & 0 deletions data/api/client-server/knocking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ paths:
type: string
- in: query
name: server_name
deprecated: true
x-changedInMatrixVersion:
"1.12": |-
This parameter has been deprecated in favour of `via` and will be removed in
Expand Down
4 changes: 4 additions & 0 deletions data/api/client-server/login.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,18 @@ paths:
$ref: definitions/user_identifier.yaml
user:
type: string
deprecated: true
description: The fully qualified user ID or just local part of the user ID, to
log in. Deprecated in favour of `identifier`.
medium:
type: string
deprecated: true
description: When logging in using a third-party identifier, the medium of the
identifier. Must be 'email'. Deprecated in favour of
`identifier`.
address:
type: string
deprecated: true
description: Third-party identifier for the user. Deprecated in favour of
`identifier`.
password:
Expand Down Expand Up @@ -194,6 +197,7 @@ paths:
x-addedInMatrixVersion: "1.3"
home_server:
type: string
deprecated: true
description: |-
The server_name of the homeserver on which the account has
been registered.
Expand Down
1 change: 1 addition & 0 deletions data/api/client-server/registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ paths:
x-addedInMatrixVersion: "1.3"
home_server:
type: string
deprecated: true
description: |-
The server_name of the homeserver on which the account has
been registered.
Expand Down
2 changes: 2 additions & 0 deletions data/event-schemas/schema/m.room.encrypted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ properties:
Olm event. For more details, see [Messaging Algorithms](/client-server-api/#messaging-algorithms).
sender_key:
type: string
deprecated: true
x-changedInMatrixVersion:
"1.3": |-
Previously this field was required, however given it offers no additional
Expand All @@ -56,6 +57,7 @@ properties:
for more information.
device_id:
type: string
deprecated: true
x-changedInMatrixVersion:
"1.3": |-
Previously this field was required for Megolm messages, however given it
Expand Down

0 comments on commit a7d3a73

Please sign in to comment.