Skip to main content

ASSETS table

The ASSETS table is a central lookup table that lists all assets in Atlan and important attributes. This table is designed to be the starting point for all queries on the Gold layer.

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
ASSET_NAMEThe asset’s name
ASSET_QUALIFIED_NAMEThe asset’s unique, fully-qualified name
DESCRIPTIONThe asset’s description
README_GUIDThe GUID for the asset’s readme
STATUSThe asset’s status (for example, active or archived)
CREATED_ATThe time (epoch) at which the asset was created, in milliseconds
CREATED_BYThe user or account that created the asset
UPDATED_ATThe time (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_ATThe time (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
POPULARITY_SCOREThe asset’s popularity score
TAGSList of tags attached to this asset
CUSTOM_METADATAList of custom metadata attributes (name/value pairs) attached to this asset
HAS_LINEAGEWhether this asset has lineage (true) or not (false)

For detailed information about these properties, refer to the Atlan metamodel reference.

Common filters

Use the ASSETS table to filter down to the assets you care about before joining to detail views. 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 with tagsTAGSARRAY_SIZE(TAGS) > 0
Specific databaseASSET_QUALIFIED_NAMELIKE '%/DATABASE_NAME/%'

See also