From 9d418ba8e998dc0d5bb82927e67ab247ad8156ab Mon Sep 17 00:00:00 2001 From: Chris Connors Date: Fri, 12 Jun 2026 13:10:56 -0400 Subject: [PATCH 1/3] Update Scaleable Analytics Adapter docs --- dev-docs/analytics/scaleable.md | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/dev-docs/analytics/scaleable.md b/dev-docs/analytics/scaleable.md index 7ebd129ea8..fe1b050372 100644 --- a/dev-docs/analytics/scaleable.md +++ b/dev-docs/analytics/scaleable.md @@ -3,8 +3,33 @@ layout: analytics title: Scaleable description: Scaleable Analytics Adapter modulecode: scaleable +tcfeu_supported: false +usp_supported: true +gpp_supported: true +coppa_supported: true +prebid_member: false --- -#### Registration +## Analytics Options -Please visit [scaleable.ai](https://scaleable.ai/) for more information. +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|-------------------|----------|---------------------------------------------------------------------|------------------|----------| +| `siteId` | required | Identifies your site to Scaleable. Contact Scaleable to receive it. | `'YOUR_SITE_ID'` | `string` | +| `auctionEndDelay` | optional | Milliseconds to wait after `AUCTION_END` before reporting (default 1500). | `1000` | `int` | +| `sampling` | optional | 0–1; the fraction of sessions to collect data on (default 1.0). | `0.5` | `float` | + +## Example Configuration + +```javascript +pbjs.enableAnalytics({ + provider: 'scaleable', + options: { + siteId: 'YOUR_SITE_ID' // contact Scaleable to receive your siteId + } +}); +``` + +## Registration + +Contact team@scaleable.ai for more information or to sign up for analytics. See [Scaleable Advertising](https://scaleable.ai/services/advertising). From d0c04decbebc5417526737bbcfca0e99a4f8607b Mon Sep 17 00:00:00 2001 From: Chris Connors Date: Fri, 12 Jun 2026 13:27:42 -0400 Subject: [PATCH 2/3] Updated Scaleable docs with linting --- dev-docs/analytics/scaleable.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-docs/analytics/scaleable.md b/dev-docs/analytics/scaleable.md index fe1b050372..8a5ac2a5b2 100644 --- a/dev-docs/analytics/scaleable.md +++ b/dev-docs/analytics/scaleable.md @@ -13,11 +13,11 @@ prebid_member: false ## Analytics Options {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|-------------------|----------|---------------------------------------------------------------------|------------------|----------| -| `siteId` | required | Identifies your site to Scaleable. Contact Scaleable to receive it. | `'YOUR_SITE_ID'` | `string` | -| `auctionEndDelay` | optional | Milliseconds to wait after `AUCTION_END` before reporting (default 1500). | `1000` | `int` | -| `sampling` | optional | 0–1; the fraction of sessions to collect data on (default 1.0). | `0.5` | `float` | +| Name | Scope | Description | Example | Type | +|-------------------|----------|---------------------------------------------------------------------------|------------------|----------| +| `siteId` | required | Identifies your site to Scaleable. Contact Scaleable to receive it. | `'YOUR_SITE_ID'` | `string` | +| `auctionEndDelay` | optional | Milliseconds to wait after `AUCTION_END` before reporting (default 1500). | `1000` | `int` | +| `sampling` | optional | 0–1; the fraction of sessions to collect data on (default 1.0). | `0.5` | `float` | ## Example Configuration @@ -32,4 +32,4 @@ pbjs.enableAnalytics({ ## Registration -Contact team@scaleable.ai for more information or to sign up for analytics. See [Scaleable Advertising](https://scaleable.ai/services/advertising). +Contact for more information or to sign up for analytics. See [Scaleable Advertising](https://scaleable.ai/services/advertising). From 92dbe3f086a6568c05ef45bc96e3dfe6efd9f8e4 Mon Sep 17 00:00:00 2001 From: Chris Connors Date: Mon, 15 Jun 2026 16:34:12 -0400 Subject: [PATCH 3/3] Scaleable Analytics PR Feedback for gpp_sids --- dev-docs/analytics/scaleable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/analytics/scaleable.md b/dev-docs/analytics/scaleable.md index 8a5ac2a5b2..806814b54c 100644 --- a/dev-docs/analytics/scaleable.md +++ b/dev-docs/analytics/scaleable.md @@ -5,7 +5,7 @@ description: Scaleable Analytics Adapter modulecode: scaleable tcfeu_supported: false usp_supported: true -gpp_supported: true +gpp_sids: usp, usnat, usstate_all coppa_supported: true prebid_member: false ---