Skip to main content
Lightweight dataset representation for listing and basic operations. A minimal dataset object containing only essential identifiers. Used by various operations to efficiently reference datasets without fetching full dataset details and metadata. This class provides a memory-efficient way to work with dataset references when you don’t need the full dataset functionality but want to access basic information or fetch the complete dataset when needed.

Example

DatasetCompact objects are typically returned by other entities that reference datasets. Use .fetch() to get the complete Dataset instance when you need full functionality like row counts or model information.

id

name

fetch()

Fetch the complete Dataset instance. Retrieves the full Dataset object with all metadata, row counts, and model associations from the Fiddler platform using this compact dataset’s ID.

Returns

Complete dataset instance with all details and capabilities.

Example