Entity
Summary​
A Tecton Entity, used to organize and join features.
An Entity is a class that represents an Entity that is being modeled in Tecton.
Entities are used to index and organize features - a FeatureView
contains at
least one Entity.
Entities contain metadata about join keys, which represent the columns that are used to join features together.
Attributes​
Name | Data Type | Description |
---|---|---|
created_at | Optional[datetime.datetime] | The time that this Tecton object was created or last updated. |
defined_in | Optional[str] | The repo filename where this object was declared. |
description | str | Returns the description of the Tecton object. |
id | str | Returns the unique id of the Tecton object. |
info | ||
join_keys | List[str] | Join keys of the entity. |
name | str | Returns the name of the Tecton object. |
owner | Optional[str] | Returns the owner of the Tecton object. |
tags | Dict[str, str] | Returns the tags of the Tecton object. |
workspace | Optional[str] | Returns the workspace that this Tecton object belongs to. |