{ "/api/v1/datasource/{datasource_type}/{datasource_id}/column/{column_name}/values/": { "get": { "parameters": [ { "description": "The type of datasource", "in": "path", "name": "datasource_type", "required": true, "schema": { "type": "string" } }, { "description": "The id of the datasource", "in": "path", "name": "datasource_id", "required": true, "schema": { "type": "integer" } }, { "description": "The name of the column to get values for", "in": "path", "name": "column_name", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "content": { "application/json": { "schema": { "properties": { "result": { "items": { "oneOf": [ { "type": "string" }, { "type": "integer" }, { "type": "number" }, { "type": "boolean" }, { "type": "object" } ] }, "type": "array" } }, "type": "object" } } }, "description": "A List of distinct values for the column" }, "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "500": { "$ref": "#/components/responses/500" } }, "security": [ { "jwt": [] } ], "summary": "Get possible values for a datasource column", "tags": [ "Datasources" ] } } }\n