MediaMath · Schema

campaign_frequency

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
frequency_type string
frequency_interval string
frequency_amount integer
use_mm_freq boolean
frequency_optimization boolean
View JSON Schema on GitHub

JSON Schema

campaigns-campaign_frequency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "campaign_frequency",
  "type": "object",
  "properties": {
    "frequency_type": {
      "type": "string",
      "enum": [
        "even",
        "asap",
        "no-limit",
        "t1-optimized",
        "frequency_goal"
      ]
    },
    "frequency_interval": {
      "type": "string",
      "minLength": 1,
      "enum": [
        "hour",
        "day",
        "week",
        "month",
        "not-applicable"
      ],
      "default": "not-applicable",
      "nullable": true
    },
    "frequency_amount": {
      "type": "integer",
      "nullable": true,
      "format": "int32",
      "example": 10
    },
    "use_mm_freq": {
      "type": "boolean",
      "deprecated": true,
      "default": false
    },
    "frequency_optimization": {
      "type": "boolean",
      "default": false
    }
  }
}