From c5a2387c57474a2e2205833532fafb4a5486eb62 Mon Sep 17 00:00:00 2001 From: 3link <34981284+3link@users.noreply.github.com> Date: Tue, 12 Dec 2023 17:33:20 +0100 Subject: [PATCH 1/3] Add missing brackets --- modules/userId/eids.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/userId/eids.md b/modules/userId/eids.md index 04073923ed..6e69f092ae 100644 --- a/modules/userId/eids.md +++ b/modules/userId/eids.md @@ -77,6 +77,7 @@ userIdAsEids = [ uids: [{ id: 'the-ids-object-stringified', atype: 1 + }] }, { @@ -101,7 +102,6 @@ userIdAsEids = [ id: 'some-random-id-value', atype: 1 }], - ext: { segments: ['s1', 's2'] } }, From cebf2bfd85d1ffee11d3d8506073f1764c6b8025 Mon Sep 17 00:00:00 2001 From: 3link <34981284+3link@users.noreply.github.com> Date: Tue, 12 Dec 2023 17:34:44 +0100 Subject: [PATCH 2/3] Add missing examples --- modules/userId/eids.md | 47 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/modules/userId/eids.md b/modules/userId/eids.md index 6e69f092ae..282feb1413 100644 --- a/modules/userId/eids.md +++ b/modules/userId/eids.md @@ -102,8 +102,7 @@ userIdAsEids = [ id: 'some-random-id-value', atype: 1 }], - segments: ['s1', 's2'] - } + segments: ['s1', 's2'] }, { @@ -117,6 +116,50 @@ userIdAsEids = [ }] }, + { + source: 'liveintent.indexexchange.com', + uids: [{ + id: 'some-random-id-value', + atype: 3, + ext: { + provider: 'liveintent.com' + } + }] + }, + + { + source: 'liveintent.sovrn.com'', + uids: [{ + id: 'some-random-id-value', + atype: 3, + ext: { + provider: 'liveintent.com' + } + }] + }, + + { + source: 'openx.net'', + uids: [{ + id: 'some-random-id-value', + atype: 3, + ext: { + provider: 'liveintent.com' + } + }] + }, + + { + source: 'pubmatic.com'', + uids: [{ + id: 'some-random-id-value', + atype: 3, + ext: { + provider: 'liveintent.com' + } + }] + }, + { source: 'media.net', uids: [{ From 526a26272627d6c2c633be579cd4f91dc3405a87 Mon Sep 17 00:00:00 2001 From: 3link <34981284+3link@users.noreply.github.com> Date: Fri, 15 Dec 2023 10:10:20 +0100 Subject: [PATCH 3/3] Add back missing ext --- modules/userId/eids.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/userId/eids.md b/modules/userId/eids.md index 282feb1413..eb37c50f0a 100644 --- a/modules/userId/eids.md +++ b/modules/userId/eids.md @@ -102,7 +102,9 @@ userIdAsEids = [ id: 'some-random-id-value', atype: 1 }], - segments: ['s1', 's2'] + ext: { + segments: ['s1', 's2'] + } }, {