DatasetFacets

data class DatasetFacets(    val documentation: DocumentationDatasetFacet? = null,     val schema: SchemaDatasetFacet? = null,     val dataSource: DatasourceDatasetFacet? = null,     val description: String? = null,     val lifecycleStateChange: LifecycleStateChangeFacet? = null)

Represents the facets associated with a dataset.

Constructors

Link copied to clipboard
constructor(    documentation: DocumentationDatasetFacet? = null,     schema: SchemaDatasetFacet? = null,     dataSource: DatasourceDatasetFacet? = null,     description: String? = null,     lifecycleStateChange: LifecycleStateChangeFacet? = null)

Properties

Link copied to clipboard

The data source facet of the dataset (optional).

Link copied to clipboard
val description: String? = null

The description of the dataset (optional).

Link copied to clipboard

The documentation facet of the dataset (optional).

Link copied to clipboard

The lifecycle state change facet of the dataset (optional).

Link copied to clipboard

The schema facet of the dataset (optional).