This documentation is for the unstable version of GoodData, currrently in development.
For stable version, go to the latest stable version of this article.

Logical Data Model

Manage logical data models.

See Create a Logical Data Model to learn abour logical data models in GoodData.

Methods

Example

from gooddata_sdk import GoodDataSdk
from pathlib import Path

# GoodData base URL, e.g. "https://www.example.com"
host = "https://www.example.com"
# GoodData user token
token = "some_user_token"
sdk = GoodDataSdk.create(host, token)

declarative_ldm = sdk.get_declarative_ldm(workspace_id="123")
sdk.catalog_workspace_content.put_declarative_ldm(workspace_id="456", ldm=logical_model)