The Trade Desk · Schema
AdvertiserDataItem
AdvertisingProgrammatic AdvertisingDSPDemand-Side PlatformCampaign ManagementConnected TVDigital AdvertisingMarketingAdTech
Properties
| Name | Type | Description |
|---|---|---|
| TDID | string | |
| DAID | string | |
| UID2 | string | |
| UID2Token | string | |
| RampID | string | |
| CoreID | string | |
| EUID | string | |
| EUIDToken | string | |
| ID5 | string | |
| NetID | string | |
| FirstID | string | |
| MerkuryID | string | |
| IqviaPPID | string | |
| Data | array | |
| CookieMappingPartnerId | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AdvertiserDataItem",
"required": [
"Data"
],
"type": "object",
"properties": {
"TDID": {
"type": "string",
"nullable": true
},
"DAID": {
"type": "string",
"nullable": true
},
"UID2": {
"type": "string",
"nullable": true
},
"UID2Token": {
"type": "string",
"nullable": true
},
"RampID": {
"type": "string",
"nullable": true
},
"CoreID": {
"type": "string",
"nullable": true
},
"EUID": {
"type": "string",
"nullable": true
},
"EUIDToken": {
"type": "string",
"nullable": true
},
"ID5": {
"type": "string",
"nullable": true
},
"NetID": {
"type": "string",
"nullable": true
},
"FirstID": {
"type": "string",
"nullable": true
},
"MerkuryID": {
"type": "string",
"nullable": true
},
"IqviaPPID": {
"type": "string",
"nullable": true
},
"Data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AdvertiserData"
}
},
"CookieMappingPartnerId": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false,
"x-speakeasy-name-override": "BaseAdvertiserDataItem"
}