Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get query parameter as JSON not showing #1007

Open
thechtman opened this issue Apr 24, 2024 · 0 comments
Open

Get query parameter as JSON not showing #1007

thechtman opened this issue Apr 24, 2024 · 0 comments

Comments

@thechtman
Copy link

I cannot get the query parameters to show with the following JSON spec. This seems to be limited to Get operations.
Rapidoc version: 9.3.3

		"/dashboards/getList": {
			"get": {
				"tags": [
					"dashboards"
				],
				"summary": "Get Dashboard List",
				"description": "Get the list of dashboards.",
				"parameters": [
					{
						"name": "request",
						"in": "query",
						"content": {
							"application/json": {
								"schema": {
									"type": "object",
									"properties": {
										"pageNo": {
											"type": "integer",
											"description": ""
										},
										"pageSize": {
											"type": "integer",
											"description": ""
										}
									}
								}
							}
						}
					}
				],
				"responses": {
					"200": {
						"description": "Successful response",
						"content": {
							"application/json": {
								"schema": {
									"type": "array",
									"items": {
										"$ref": "#/components/schemas/DashboardInfo"
									}
								}
							}
						}
					},
					"401": {
						"$ref": "#/components/responses/NotAuthenticated"
					}
				}
			}
		}

The result is just showing the "request" parameter without any details of the child items.
I did try without context and application/json and specifying explode with no results.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant