mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-28 01:53:43 +01:00
Fix required properties in POST /query
This commit is contained in:
parent
96889f16e9
commit
3e13ec2841
|
|
@ -77,7 +77,6 @@ paths:
|
||||||
server_keys:
|
server_keys:
|
||||||
type: object
|
type: object
|
||||||
description: The query criteria
|
description: The query criteria
|
||||||
required: true
|
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: object
|
type: object
|
||||||
name: ServerName
|
name: ServerName
|
||||||
|
|
@ -91,8 +90,8 @@ paths:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
description: Minimum Valid Until MS
|
description: Minimum Valid Until MS
|
||||||
required: true # TODO: Verify
|
|
||||||
example: 1234567890
|
example: 1234567890
|
||||||
|
required: ['server_keys']
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: The keys for the server
|
description: The keys for the server
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue