featurebyte.Entity.name_history¶ name_history: list[dict[str, Any]] Description¶ Returns the history of the entity name of the Entity object. Returns¶ list[dict[str, Any]] History of the entity name. Examples¶ Get the history of the entity name: >>> entity = catalog.get_entity(name="groceryproduct") >>> entity.name_history [{'created_at': ..., 'name': 'groceryproduct'}] See Also¶ Entity.name Entity.update_name TableColumn.as_entity