I tried to generate a client for the OpenAPI specification of Jira datacenter, but had trouble with it, because the definition of various search endpoints wrongly returns just a single item instead of an array.
For example, the user search currently looks like this
"responses": {
"200": {
"description": "Returns a list of users.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserBean"
}
}
}
}
...
}
"responses": {
"200": {
"description": "Returns a list of users.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserBean"
}
}
}
}
}
...
}
Can you please fix that?
Hi @Christian Beikov, welcome to the community.
The Atlassian team reads this forum, but I think it will be better all around to report this as a bug to https://support.atlassian.com/
Hi, I'm not a customer, so I can't report on that platform AFAIU. I'm just integrating something and ran into this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.