File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
changelogs/application_service/newsfragments Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change
1
+ Fix JSON schema of custom fields in query.
Original file line number Diff line number Diff line change @@ -96,12 +96,14 @@ paths:
96
96
schema :
97
97
type : string
98
98
- in : query
99
- name : fields...
99
+ name : fields
100
100
description : |-
101
101
One or more custom fields that are passed to the application
102
102
service to help identify the user.
103
103
schema :
104
- type : string
104
+ type : object
105
+ additionalProperties :
106
+ type : string
105
107
responses :
106
108
" 200 " :
107
109
description : The Matrix User IDs found with the given parameters.
@@ -161,12 +163,14 @@ paths:
161
163
schema :
162
164
type : string
163
165
- in : query
164
- name : fields...
166
+ name : fields
165
167
description : |-
166
168
One or more custom fields that are passed to the application
167
169
service to help identify the third-party location.
168
170
schema :
169
- type : string
171
+ type : object
172
+ additionalProperties :
173
+ type : string
170
174
responses :
171
175
" 200 " :
172
176
description : At least one portal room was found.
Original file line number Diff line number Diff line change @@ -139,11 +139,13 @@ paths:
139
139
schema :
140
140
type : string
141
141
- in : query
142
- name : fields...
142
+ name : fields
143
143
description : One or more custom fields that are passed to the AS to help
144
144
identify the user.
145
145
schema :
146
- type : string
146
+ type : object
147
+ additionalProperties :
148
+ type : string
147
149
responses :
148
150
" 200 " :
149
151
description : The Matrix User IDs found with the given parameters.
You can’t perform that action at this time.
0 commit comments