Skip to content

Commit 22167b8

Browse files
gazconroyGary Conroykai687
authored
fix(specs): extend Analytics descriptions (#4360)
Co-authored-by: Gary Conroy <gary.conroy@LON-M3P-GConroy.local> Co-authored-by: Kai Welke <kai.welke@algolia.com>
1 parent 074eea3 commit 22167b8

22 files changed

+143
-37
lines changed

specs/analytics/common/parameters.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,7 @@ ClickAnalytics:
7676
RevenueAnalytics:
7777
in: query
7878
name: revenueAnalytics
79-
description: |
80-
Whether to include revenue-related metrics in the response.
81-
82-
If true, metrics related to click and conversion events are also included in the response.
79+
description: Whether to include metrics related to revenue events in the response.
8380
schema:
8481
type: boolean
8582
default: false
@@ -184,7 +181,7 @@ clickThroughRate:
184181
type: number
185182
format: double
186183
description: |
187-
Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches.
184+
Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches.
188185
If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
189186
nullable: true
190187
minimum: 0
@@ -195,15 +192,17 @@ clickThroughRate:
195192
noClickRate:
196193
type: number
197194
format: double
198-
description: No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches.
195+
description: |
196+
No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches.
199197
minimum: 0
200198
maximum: 1
201199
example: 0.15
202200

203201
noResultsRate:
204202
type: number
205203
format: double
206-
description: No results rate, calculated as number of searches with zero results divided by the total number of searches.
204+
description: |
205+
No results rate: calculated as the number of searches with zero results divided by the total number of searches.
207206
minimum: 0
208207
maximum: 1
209208
example: 0.49
@@ -212,7 +211,7 @@ conversionRate:
212211
type: number
213212
format: double
214213
description: |
215-
Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches.
214+
Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches.
216215
If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
217216
nullable: true
218217
minimum: 0
@@ -231,7 +230,7 @@ addToCartRate:
231230
type: number
232231
format: double
233232
description: |
234-
Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches.
233+
Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches.
235234
If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
236235
nullable: true
237236
minimum: 0
@@ -250,7 +249,7 @@ purchaseRate:
250249
type: number
251250
format: double
252251
description: |
253-
Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches.
252+
Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches.
254253
If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
255254
nullable: true
256255
minimum: 0
@@ -266,7 +265,8 @@ purchaseCount:
266265

267266
currencies:
268267
type: object
269-
description: Revenue associated with this search, broken-down by currencies.
268+
description: |
269+
Revenue associated with this search: broken down by currency.
270270
default: {}
271271
additionalProperties:
272272
title: currencyCode
@@ -310,7 +310,7 @@ search:
310310
type: string
311311

312312
hit:
313-
description: Object ID of a record that's returned as a search result.
313+
description: Object ID of a record returned as a search result.
314314
type: string
315315
example: 'method-export-rules-php'
316316

specs/analytics/common/schemas/getTopFiltersNoResults.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ getTopFiltersNoResultsResponse:
99
nullable: true
1010
description: |
1111
Filters for searches without any results.
12-
If null, the search term specified with the `search` parameter is not a search without results,
12+
If null, the search term specified with the `search` parameter isn't a search without results,
1313
or the `search` parameter is absent from the request.
1414
items:
1515
$ref: '#/getTopFiltersNoResultsValues'

specs/analytics/paths/click/getAddToCartRate.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ get:
66
- analytics
77
summary: Retrieve add-to-cart rate
88
description: |
9-
Retrieves the add-to-cart rate for all of your searches with at least one add-to-cart event, including a daily breakdown.
9+
Retrieves the add-to-cart rate for all your searches with at least one add-to-cart event, including a daily breakdown.
1010
1111
By default, the analyzed period includes the last eight days including the current day.
12+
13+
The rate is the number of add-to-cart conversion events divided by the number of tracked searches.
14+
A search is tracked if it returns a queryID (`clickAnalytics` is `true`).
15+
This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
16+
17+
**There's a difference between a 0 and null add-to-cart rate when `clickAnalytics` is enabled:**
18+
19+
- **Null** means there were no queries: since Algolia didn't receive any events, the add-to-cart rate is null.
20+
- **0** mean there _were_ queries but no [add-to-cart events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
1221
parameters:
1322
- $ref: '../../../common/parameters.yml#/Index'
1423
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/click/getAverageClickPosition.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ get:
88
description: |
99
Retrieves the average click position of your search results, including a daily breakdown.
1010
11-
The average click position is the average of all clicked search results' positions.
11+
The average click position is the average of all clicked search result positions.
1212
For example, if users only ever click on the first result for any search, the average click position is 1.
1313
By default, the analyzed period includes the last eight days including the current day.
14+
15+
An average of `null` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
16+
The average is `null` until Algolia receives at least one click event.
1417
parameters:
1518
- $ref: '../../../common/parameters.yml#/Index'
1619
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/click/getClickPositions.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ get:
99
Retrieves the positions in the search results and their associated number of clicks.
1010
1111
This lets you check how many clicks the first, second, or tenth search results receive.
12+
13+
An average of `0` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
1214
parameters:
1315
- $ref: '../../../common/parameters.yml#/Index'
1416
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/click/getClickThroughRate.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ get:
66
- analytics
77
summary: Retrieve click-through rate
88
description: |
9-
Retrieves the click-through rate for all of your searches with at least one click event, including a daily breakdown
9+
Retrieves the click-through rate (CTR) for all your searches with at least one click event, including a daily breakdown.
1010
1111
By default, the analyzed period includes the last eight days including the current day.
12+
13+
**There's a difference between a 0 and null CTR when `clickAnalytics` is enabled:**
14+
15+
- **Null** means there were no queries: since Algolia didn't receive any events, CTR is null.
16+
- **0** mean there _were_ queries but no [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
1217
parameters:
1318
- $ref: '../../../common/parameters.yml#/Index'
1419
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/click/getConversionRate.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ get:
66
- analytics
77
summary: Retrieve conversion rate
88
description: |
9-
Retrieves the conversion rate for all of your searches with at least one conversion event, including a daily breakdown.
9+
Retrieves the conversion rate (CR) for all your searches with at least one conversion event, including a daily breakdown.
1010
1111
By default, the analyzed period includes the last eight days including the current day.
12+
13+
**There's a difference between a 0 and null CR when `clickAnalytics` is enabled:**
14+
15+
- **Null** means there were no queries: since Algolia didn't receive any events, CR is null.
16+
- **0** mean there _were_ queries but no [conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
1217
parameters:
1318
- $ref: '../../../common/parameters.yml#/Index'
1419
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/click/getPurchaseRate.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ get:
66
- analytics
77
summary: Retrieve purchase rate
88
description: |
9-
Retrieves the purchase rate for all of your searches with at least one purchase event, including a daily breakdown.
9+
Retrieves the purchase rate for all your searches with at least one purchase event, including a daily breakdown.
1010
1111
By default, the analyzed period includes the last eight days including the current day.
12+
13+
The rate is the number of purchase conversion events divided by the number of tracked searches.
14+
A search is tracked if it returns a query ID (`clickAnalytics` is `true`).
15+
This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
16+
17+
**There's a difference between a 0 and null purchase rate when `clickAnalytics` is enabled:**
18+
19+
- **Null** means there were no queries: since Algolia didn't receive any events, the purchase rate is null.
20+
- **0** mean there _were_ queries but no [purchase conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
1221
parameters:
1322
- $ref: '../../../common/parameters.yml#/Index'
1423
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/revenue/getRevenue.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
get:
22
tags:
3-
- click
3+
- revenue
44
operationId: getRevenue
55
x-acl:
66
- analytics
77
summary: Retrieve revenue data
88
description: |
99
Retrieves revenue-related metrics, such as the total revenue or the average order value.
1010
11-
To retrieve revenue-related metrics, sent purchase events.
11+
To retrieve revenue-related metrics, send purchase events.
1212
By default, the analyzed period includes the last eight days including the current day.
13+
14+
Revenue is based on purchase conversion events (a conversion event with an `eventSubtype` attribute of `purchase`).
15+
The revenue is the `price` attribute multiplied by the `quantity` attribute for each object in the event's `objectData` array.
1316
parameters:
1417
- $ref: '../../../common/parameters.yml#/Index'
1518
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/search/getNoClickRate.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ get:
77
summary: Retrieve no click rate
88
description: |
99
Retrieves the fraction of searches that didn't lead to any click within a time range, including a daily breakdown.
10+
It also returns the number of tracked searches and tracked searches without clicks.
1011
1112
By default, the analyzed period includes the last eight days including the current day.
1213
parameters:

specs/analytics/paths/search/getNoResultsRate.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ get:
77
summary: Retrieve no results rate
88
description: |
99
Retrieves the fraction of searches that didn't return any results within a time range, including a daily breakdown.
10+
It also returns the count of searches and searches without results used to compute the rates.
1011
1112
By default, the analyzed period includes the last eight days including the current day.
1213
parameters:

specs/analytics/paths/search/getSearchesNoClicks.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ get:
55
x-acl:
66
- analytics
77
summary: Retrieve top searches without clicks
8-
description: Retrieves the most popular searches that didn't lead to any clicks, from the 1,000 most frequent searches.
8+
description: |
9+
Retrieves the most popular searches that didn't lead to any clicks, from the 1,000 most frequent searches.
10+
11+
For each search, it also returns the number of displayed search results that remained unclicked.
912
parameters:
1013
- $ref: '../../../common/parameters.yml#/Index'
1114
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/search/getSearchesNoResults.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ get:
44
operationId: getSearchesNoResults
55
x-acl:
66
- analytics
7-
summary: Retrieve top searches without results
8-
description: Retrieves the most popular searches that didn't return any results.
7+
summary: Retrieve the most frequent searches without results.
8+
description: Retrieves the 1,000 most frequent searches that produced zero results.
9+
910
parameters:
1011
- $ref: '../../../common/parameters.yml#/Index'
1112
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/search/getTopCountries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ get:
55
x-acl:
66
- analytics
77
summary: Retrieve top countries
8-
description: Retrieves the countries with the most searches to your index.
8+
description: Retrieves the countries with the most searches in your index.
99
parameters:
1010
- $ref: '../../../common/parameters.yml#/Index'
1111
- $ref: '../../../common/parameters.yml#/StartDate'

specs/analytics/paths/search/getTopFilterAttributes.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ get:
66
- analytics
77
summary: Retrieve top filters
88
description: |
9-
Retrieves the most frequently used filter attributes.
9+
Retrieves the 1,000 most frequently used filter attributes.
1010
1111
These are attributes of your records that you included in the `attributesForFaceting` setting.
1212
parameters:

specs/analytics/paths/search/getTopFilterForAttribute.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ get:
66
- analytics
77
summary: Retrieve top filter values
88
description: |
9-
Retrieves the most frequent filter (facet) values for a filter attribute.
9+
Retrieves the 1,000 most frequent filter (facet) values for a filter attribute.
1010
1111
These are attributes of your records that you included in the `attributesForFaceting` setting.
1212
parameters:

specs/analytics/paths/search/getTopFiltersNoResults.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ get:
66
- analytics
77
summary: Retrieve top filters for a search without results
88
description: |
9-
Retrieves the most frequently used filters for a search that didn't return any results.
9+
Retrieves the 1,000 most frequently used filters for a search that didn't return any results.
1010
1111
To get the most frequent searches without results, use the [Retrieve searches without results](#tag/search/operation/getSearchesNoResults) operation.
1212
parameters:

specs/analytics/paths/search/getTopHits.yml

+24-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,30 @@ get:
55
x-acl:
66
- analytics
77
summary: Retrieve top search results
8-
description: Retrieves the object IDs of the most frequent search results.
8+
description: |
9+
Retrieves the object IDs of the 1,000 most frequent search results.
10+
11+
If you set the `clickAnalytics` query parameter to true, the response also includes:
12+
13+
- Tracked searches count. Tracked searches are Search API requests with the `clickAnalytics` parameter set to `true`. This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
14+
- Click count
15+
- Click-through rate (CTR)
16+
- Conversion count
17+
- Conversion rate (CR)
18+
- Average click position
19+
20+
If you set the `revenueAnalytics` parameter to `true`, the response also includes:
21+
22+
- Add-to-cart count
23+
- Add-to-cart rate (ATCR)
24+
- Purchase count
25+
- Purchase rate
26+
- Revenue details for each currency
27+
28+
**There's a difference between 0% rates and null rates:**
29+
30+
- **Null** means there were no queries: since Algolia didn't receive any events, the rates (CTR, CR, ATCR, purchase rate) are null.
31+
- **0% rates** mean there _were_ queries but no [click or conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
932
parameters:
1033
- $ref: '../../../common/parameters.yml#/Index'
1134
- $ref: '../../common/parameters.yml#/Search'

specs/analytics/paths/search/getTopSearches.yml

+24-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,30 @@ get:
55
x-acl:
66
- analytics
77
summary: Retrieve top searches
8-
description: Returns the most popular search terms.
8+
description: |
9+
Returns the most popular searches. For each search, it also includes the average number of hits.
10+
11+
If you set the `clickAnalytics` query parameter to `true`, the response also includes
12+
13+
- Tracked searches count. Tracked searches are Search API requests with the `clickAnalytics` parameter set to `true`. This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
14+
- Click count
15+
- Click-through rate (CTR)
16+
- Conversion count
17+
- Conversion rate (CR)
18+
- Average click position
19+
20+
If you set the `revenueAnalytics` query parameter to `true`, the response also includes:
21+
22+
- Add-to-cart count
23+
- Add-to-cart rate (ATCR)
24+
- Purchase count
25+
- Purchase rate
26+
- Revenue details for each currency
27+
28+
**There's a difference between 0% rates and null rates:**
29+
30+
- **Null** means there were no queries: since Algolia didn't receive any events, the rates (CTR, CR, ATCR, purchase rate) are null.
31+
- **0% rates** mean there _were_ queries but no [click or conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
932
parameters:
1033
- $ref: '../../../common/parameters.yml#/Index'
1134
- $ref: '../../common/parameters.yml#/ClickAnalytics'

specs/analytics/paths/search/getUsersCount.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ get:
88
description: |
99
Retrieves the number of unique users within a time range, including a daily breakdown.
1010
11-
Since this endpoint returns the number of unique users, the sum of the daily values might be different from the total number.
11+
Since it returns the number of unique users, the sum of the daily values might be different from the total number.
1212
13-
By default, Algolia distinguishes search users by their IP address, _unless_ you include a pseudonymous user identifier in your search requests with the `userToken` API parameter or `x-algolia-usertoken` request header.
14-
By default, the analyzed period includes the last eight days including the current day.
13+
By default:
14+
15+
- Algolia distinguishes search users by their IP address, _unless_ you include a pseudonymous user identifier in your search requests with the `userToken` API parameter or `x-algolia-usertoken` request header.
16+
- The analyzed period includes the last eight days including the current day.
1517
externalDocs:
1618
url: https://www.algolia.com/doc/guides/search-analytics/guides/usertoken/
1719
description: |

specs/analytics/paths/status/getStatus.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ get:
88
description: |
99
Retrieves the time when the Analytics data for the specified index was last updated.
1010
11-
The Analytics data is updated every 5 minutes.
11+
If the index has been recently created or no search has been performed yet the updated time is `null`.
12+
13+
The Analytics data is updated every 5&nbsp;minutes.
1214
parameters:
1315
- $ref: '../../../common/parameters.yml#/Index'
1416
responses:

0 commit comments

Comments
 (0)