From 8ba854c4875f782e0b257f5ef71f01a71df6046a Mon Sep 17 00:00:00 2001 From: Paul Jensen Date: Tue, 17 Sep 2024 17:46:42 -0400 Subject: [PATCH 1/2] Change Interest Group maximum lifetime from 30 to 90 days. --- FLEDGE.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/FLEDGE.md b/FLEDGE.md index e02d1a637..f3552c29b 100644 --- a/FLEDGE.md +++ b/FLEDGE.md @@ -114,7 +114,7 @@ Browsers keep track of the set of interest groups that they have joined. For ea const myGroup = { 'owner': 'https://www.example-dsp.com', 'name': 'womens-running-shoes', - 'lifetimeMs': 30 * kMillisecsPerDay, + 'lifetimeMs': 90 * kMillisecsPerDay, 'priority': 0.0, 'priorityVector': { 'signal1': 2, @@ -166,7 +166,7 @@ There is a related API `navigator.clearOriginJoinedAdInterestGroups(owner, [ Date: Tue, 17 Sep 2024 17:48:52 -0400 Subject: [PATCH 2/2] Update FLEDGE_browser_bidding_and_auction_API.md --- FLEDGE_browser_bidding_and_auction_API.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FLEDGE_browser_bidding_and_auction_API.md b/FLEDGE_browser_bidding_and_auction_API.md index bdbc3e471..429a7eb5b 100644 --- a/FLEDGE_browser_bidding_and_auction_API.md +++ b/FLEDGE_browser_bidding_and_auction_API.md @@ -346,11 +346,11 @@ The schema for the CBOR encoding of the interest group (specified using [JSON Sc "properties": { "joinCount": { "type": "number", - "description": "Number of times the group was joined in the last 30 days." + "description": "Number of times the group was joined in the last 90 days." }, "bidCount": { "type": "number", - "description": "Number of times the group bid in an auction in the last 30 days." + "description": "Number of times the group bid in an auction in the last 90 days." }, "recency": { "type": "number", @@ -361,7 +361,7 @@ The schema for the CBOR encoding of the interest group (specified using [JSON Sc "items": { "type": "array", "description": - "Tuple of time-ad pairs for a previous win for this interest group that occurred in the last 30 days. The time is specified in seconds before the containing auctionBlob was requested.", + "Tuple of time-ad pairs for a previous win for this interest group that occurred in the last 90 days. The time is specified in seconds before the containing auctionBlob was requested.", "items": false, "prefixItems": [ {