Google's Topics API provides the functionality to include interest-based user information in bid requests using something called topics without the use of cookies in Chrome when Media Owners are integrated with Index using Prebid.js version 8.9.0 or later. トピックは、IAB Audience Taxonomyに基づいて、広告タクソノミーから選択されたトピックです。提供された場合、IndexはDSPに送信する入札リクエストのuser.data.extとuser.data[].segmentオブジェクトに以下のトピック情報を送信します。
Note: Index will start sending these fields in December 2023.
| フィールド | タイプ | 詳細 |
|---|---|---|
user.data.name | 文字列:必須 | トピックIDを確認したデータプロバイダーのエクスチェンジ特定の名称。IndexがトピックIDを確認した場合は、nameが常にtopics.indexexchange.comになります。 |
user.data.ext.segclass | 文字列:必須 |
Taxonomy V1: https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v1.md Taxonomy V2: https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v2.md |
| 整数:必須 | Enumeration of TaxonomiesのIABテックラボで指定されたタクソノミーに関連するID。プライバシーサンドボックスのTopics APIでは、当社は以下のタクソノミーに対応しています: |
| 文字列:必須 | IDフィールドで指定されたバージョンにマッピングされたトピックID。 |
トピックデータは、入札リクエストで以下のように表示されます。
{
...
"user": {
"data": [{
"name": "topics.indexexchange.com", // Exchange-specific name for the data provider that observed the topic ID
"ext": {
"segtax": 600, // Taxonomy Mapping to V1
"segclass": "1" // Model Mapping
},
"segment": [{
"id": "10"// Topic ID
}]
},
{
"name": "topics.indexexchange.com", // Exchange-specific name for the data provider that observed the topic ID
"ext": {
"segtax": 601, // Taxonomy Mapping to V2
"segclass": "2" // Model Mapping
},
"segment": [{
"id": "12" // Topic ID
}]
}
]
}
}
For more information, refer to the Topics Integration Guide for SSPs.