AlgoliaRecord
This class defines the structure of a record to be indexed in Algolia, specifying the required fields for search and ranking. It includes attributes for the textual content, page identification, absolute URL, title, unique object identifier, and numerical rank.
Attributes
| Attribute | Type | Description |
|---|---|---|
| content | str | The full text content of the page to be indexed for search retrieval. |
| pageID | str | Unique identifier for the source page used to group multiple records belonging to the same document. |
| abs_url | str | The absolute URL pointing to the specific location of the content on the live website. |
| title | str | The display title of the page or section represented by this record. |
| objectID | str | The unique identifier required by Algolia to distinguish this specific record within the index. |
| rank | int | Numerical value used to influence the search relevance and ordering of the record in results. |