Fix schema of custom fields in query for appservice API (#1584)

* Fix schema of custom fields in query for appservice API

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>

* Add changelog

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>

* Remove ellipses

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>

---------

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
pull/1596/head
Kévin Commaille 11 months ago committed by GitHub
parent 67c9f814e0
commit 1405184765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1 @@
Fix JSON schema of custom fields in query.

@ -96,11 +96,13 @@ paths:
schema:
type: string
- in: query
name: fields...
name: fields
description: |-
One or more custom fields that are passed to the application
service to help identify the user.
schema:
type: object
additionalProperties:
type: string
responses:
"200":
@ -161,11 +163,13 @@ paths:
schema:
type: string
- in: query
name: fields...
name: fields
description: |-
One or more custom fields that are passed to the application
service to help identify the third-party location.
schema:
type: object
additionalProperties:
type: string
responses:
"200":

@ -139,10 +139,12 @@ paths:
schema:
type: string
- in: query
name: fields...
name: fields
description: One or more custom fields that are passed to the AS to help
identify the user.
schema:
type: object
additionalProperties:
type: string
responses:
"200":

Loading…
Cancel
Save