Currently, the GoodData Python SDK and API methods for listing visualizations (such as get_visualizations) return the full visualization objects, including their definitions and referenced metadata, not just selected fields like name and id. The SDK documentation and API references do not mention an option to limit the returned fields to only name and id when fetching visualizations. All available visualizations are returned as full objects with side-loaded metadata about the entities they reference [Python SDK get_visualizations](
https://www.gooddata.com/docs/python-sdk/latest/api-reference/sdk/visualizationservice/get_visualizations/) [Python SDK workspace-content get_visualizations](
https://www.gooddata.com/docs/python-sdk/latest/workspace-content/workspace-content/get_visualizations/). The OpenAPI documentation for the Visualization Object API does mention a filter parameter (using RSQL) and an include parameter for related entities, but these are for filtering and including relationships, not for limiting the fields returned in the response. There is no documented way to request only specific fields (like name and id) for each visualization object via the API; the full object is always returned [OpenAPI Visualization Object](
https://www.gooddata.com/docs/cloud/api-and-sdk/api/gooddata-cn-oapi-all-raw-schema.json). In summary: There is no supported way to load only selected fields (such as name and id) for visualizations via the GoodData API or Python SDK; the full visualization definitions are always returned.