MediaMath · Schema

strategy_duration

Duration of strategy must not exceed 36 months

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
use_campaign_start boolean
use_campaign_end boolean
start_date string
end_date string
View JSON Schema on GitHub

JSON Schema

campaigns-strategy_duration.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "strategy_duration",
  "type": "object",
  "additionalProperties": false,
  "description": "Duration of strategy must not exceed 36 months",
  "properties": {
    "use_campaign_start": {
      "type": "boolean"
    },
    "use_campaign_end": {
      "type": "boolean"
    },
    "start_date": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "end_date": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}