The Trade Desk · Schema

AdvertiserData

AdvertisingProgrammatic AdvertisingDSPDemand-Side PlatformCampaign ManagementConnected TVDigital AdvertisingMarketingAdTech

Properties

Name Type Description
Name string
TimestampUtc string
TtlInMinutes integer
BaseBidCPM number
BaseBidCPMMetadata string
BidFactor number
View JSON Schema on GitHub

JSON Schema

AdvertiserData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AdvertiserData",
  "required": [
    "Name"
  ],
  "type": "object",
  "properties": {
    "Name": {
      "type": "string"
    },
    "TimestampUtc": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "TtlInMinutes": {
      "type": "integer",
      "format": "int32",
      "nullable": true
    },
    "BaseBidCPM": {
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "BaseBidCPMMetadata": {
      "type": "string",
      "nullable": true
    },
    "BidFactor": {
      "type": "number",
      "format": "double",
      "nullable": true
    }
  },
  "additionalProperties": false
}