MediaMath · Schema

campaign_budget

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
total_budget number
total_impression_budget integer
currency_code string
margin_pct number
dynamic_budget_allocation_type string
dynamic_budget_allocation_applied string
dynamic_budget_allocation_available string
View JSON Schema on GitHub

JSON Schema

campaigns-campaign_budget.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "campaign_budget",
  "type": "object",
  "properties": {
    "total_budget": {
      "type": "number",
      "format": "float",
      "nullable": true,
      "deprecated": true
    },
    "total_impression_budget": {
      "type": "integer",
      "nullable": true,
      "deprecated": true,
      "format": "int64",
      "minimum": 1,
      "maximum": 9223372036854776000,
      "example": 18789
    },
    "currency_code": {
      "type": "string",
      "minLength": 3,
      "maxLength": 3,
      "example": "USD"
    },
    "margin_pct": {
      "type": "number",
      "format": "float",
      "minimum": 0,
      "maximum": 9999999.9999
    },
    "dynamic_budget_allocation_type": {
      "type": "string",
      "enum": [
        "SBA_AUTO_ALLOCATION",
        "SBA_RECOMMENDATIONS_ONLY",
        "OFF"
      ],
      "default": "OFF"
    },
    "dynamic_budget_allocation_applied": {
      "type": "string",
      "format": "date-time"
    },
    "dynamic_budget_allocation_available": {
      "type": "string",
      "format": "date-time"
    }
  }
}