RapiDoc icon indicating copy to clipboard operation
RapiDoc copied to clipboard

Get query parameter as JSON not showing

Open thechtman opened this issue 1 year ago • 0 comments

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

thechtman avatar Apr 24 '24 00:04 thechtman