MediaMath · Schema

campaign_viewability

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
vendor_id integer
type string
sample_rate number
View JSON Schema on GitHub

JSON Schema

campaigns-campaign_viewability.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "campaign_viewability",
  "type": "object",
  "nullable": true,
  "required": [
    "vendor_id",
    "sample_rate",
    "type"
  ],
  "properties": {
    "vendor_id": {
      "type": "integer",
      "format": "int32",
      "example": 34
    },
    "type": {
      "type": "string",
      "enum": [
        "AUTO_TAG",
        "BYOV"
      ]
    },
    "sample_rate": {
      "type": "number",
      "format": "float",
      "minimum": 0,
      "maximum": 1
    }
  }
}