search.search_index =================== .. py:module:: search.search_index Classes ------- .. autoapisummary:: search.search_index.SearchIndex Module Contents --------------- .. py:class:: SearchIndex Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.UTCPublicationMixin` Full-text Search Index (fts) for all searchable models and entries. This table contains full-text search (fts) index information for all searchable models, including the owner of the index, the type of the owner, and the full-text search data. It is used to facilitate efficient searching across different models and entries. .. py:attribute:: __tablename__ :value: 'search_index' .. py:attribute:: id .. py:attribute:: owner_type .. py:attribute:: owner_tablename .. py:attribute:: owner_id_int .. py:attribute:: owner_id_uuid .. py:attribute:: owner_id_str .. py:attribute:: public .. py:attribute:: access .. py:attribute:: last_change .. py:attribute:: _tags :type: sqlalchemy.Column[dict[str, str] | None] .. py:attribute:: suggestion .. py:attribute:: fts_idx_data .. py:attribute:: fts_idx .. py:attribute:: __mapper_args__ .. py:attribute:: __table_args__ .. py:property:: tags :type: set[str]