Fix schema of custom fields in query for appservice API

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
Kévin Commaille 2023-06-22 14:41:09 +02:00
parent b79fa06cfb
commit 2cc1017dad
No known key found for this signature in database
GPG key ID: 29A48C1F03620416
2 changed files with 9 additions and 3 deletions

View file

@ -101,7 +101,9 @@ paths:
One or more custom fields that are passed to the application One or more custom fields that are passed to the application
service to help identify the user. service to help identify the user.
schema: schema:
type: string type: object
additionalProperties:
type: string
responses: responses:
"200": "200":
description: The Matrix User IDs found with the given parameters. description: The Matrix User IDs found with the given parameters.
@ -166,7 +168,9 @@ paths:
One or more custom fields that are passed to the application One or more custom fields that are passed to the application
service to help identify the third-party location. service to help identify the third-party location.
schema: schema:
type: string type: object
additionalProperties:
type: string
responses: responses:
"200": "200":
description: At least one portal room was found. description: At least one portal room was found.

View file

@ -143,7 +143,9 @@ paths:
description: One or more custom fields that are passed to the AS to help description: One or more custom fields that are passed to the AS to help
identify the user. identify the user.
schema: schema:
type: string type: object
additionalProperties:
type: string
responses: responses:
"200": "200":
description: The Matrix User IDs found with the given parameters. description: The Matrix User IDs found with the given parameters.