MediaMath · Schema

strategy_budget

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
budget number Must be a valid float between 1 and 10000000 USD or its equivalent in other currency.
currency_code string
margin_pct number
View JSON Schema on GitHub

JSON Schema

campaigns-strategy_budget.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "strategy_budget",
  "type": "object",
  "properties": {
    "budget": {
      "type": "number",
      "format": "float",
      "description": "Must be a valid float between 1 and 10000000 USD or its equivalent in other currency.",
      "nullable": true
    },
    "currency_code": {
      "type": "string"
    },
    "margin_pct": {
      "type": "number",
      "format": "float",
      "minimum": 0,
      "maximum": 9999999.9999,
      "nullable": true
    }
  }
}