MediaMath · Schema

new_strategy_group_base

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
name string
description string
spend_cap_type string
spend_cap_amount number
impression_cap_type string
impression_cap_amount integer
external_identifier string
View JSON Schema on GitHub

JSON Schema

campaigns-new_strategy_group_base.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "new_strategy_group_base",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 1024
    },
    "spend_cap_type": {
      "type": "string",
      "enum": [
        "even",
        "asap",
        "no-limit"
      ],
      "default": "no-limit"
    },
    "spend_cap_amount": {
      "type": "number",
      "format": "float",
      "nullable": true,
      "minimum": 0.01,
      "maximum": 9999999.99
    },
    "impression_cap_type": {
      "type": "string",
      "enum": [
        "even",
        "asap",
        "no-limit"
      ],
      "default": "no-limit"
    },
    "impression_cap_amount": {
      "type": "integer",
      "format": "int32",
      "nullable": true,
      "minimum": 1
    },
    "external_identifier": {
      "type": "string",
      "nullable": true,
      "maxLength": 256
    }
  }
}