Skip to main content

ASSETS table

The ASSETS table is a unified asset registry that consolidates all assets across SQL, BI, pipeline, data quality, and object domains. It serves as the central lookup source for resolving GUIDs to human-readable names, types, and associated metadata including ownership details.

This table is designed to be the starting point for all queries on the Gold namespace.

For complete entity type definitions and properties, refer to the Atlan Developer documentation.

Columns

The ASSETS table includes the following columns:

ColumnDescription
guidThe asset's globally-unique identifier
asset_typeThe asset's type (for example, Table, Column, Dashboard)
statusThe asset's status (for example, ACTIVE, DELETED)
asset_nameThe asset's name
display_nameHuman-readable display name of the asset, often differs from the technical name
asset_qualified_nameThe asset's unique, fully-qualified name
descriptionThe asset's system-generated or source-catalog description
user_descriptionUser-provided description of the asset, as authored in Atlan (separate from system description)
readme_guidThe GUID for the asset's readme
created_atTime (epoch) at which the asset was created, in milliseconds
created_byThe user or account that created the asset
updated_atTime (epoch) at which the asset was last updated, in milliseconds
updated_byThe user or account that last updated the asset
certificate_statusThe asset's certification status
certificate_updated_byThe user or account that last updated the asset's certification status
certificate_updated_atTime (epoch) at which the asset's certification status was last updated, in milliseconds
connector_nameThe type of connector through which this asset is accessible
connector_qualified_nameThe unique, fully-qualified name of the connection through which this asset is accessible
source_created_atTime (epoch) at which this asset was created in the source system, in milliseconds
source_created_byName of the user who created this asset in the source system
source_updated_atTime (epoch) at which this asset was last updated in the source system, in milliseconds
source_updated_byName of the user who last updated this asset, in the source system
owner_usersList of users who own this asset
owner_groupsList of groups who own this asset
term_guidsList of glossary term GUIDs associated with the asset
popularity_scoreThe asset's popularity score
has_lineageWhether this asset has lineage (true) or not (false)
domain_guidsList of DataDomain GUIDs associated with the asset
product_guidsList of DataProduct GUIDs associated with the asset
asset_ai_generated_descriptionAI-generated description for the asset (Data Steward)
user_defined_typeThe user-defined type name for CustomEntity assets; NULL for all native asset types

Common filters

Use the assets table to filter down to the assets you care about before joining to detail tables. This keeps queries focused and improves performance.

What you wantColumn to filterExample value
Specific connectorconnector_name'snowflake', 'bigquery', 'tableau'
Specific asset typeasset_type'Table', 'Column', 'Dashboard'
Active assets onlystatus'ACTIVE'
Certified assetscertificate_status'VERIFIED'
Assets with ownersowner_usersARRAY_SIZE(owner_users) > 0
Popular assetspopularity_score> 50
Assets with lineagehas_lineage= true
Assets with termsterm_guidsARRAY_SIZE(term_guids) > 0
Assets in a domaindomain_guidsARRAY_SIZE(domain_guids) > 0
Specific databaseasset_qualified_nameLIKE '%/DATABASE_NAME/%'

See also