MediaMath · Schema

strategy_concepts

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
weighting string
creative_groups array
View JSON Schema on GitHub

JSON Schema

campaigns-strategy_concepts.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "strategy_concepts",
  "type": "object",
  "properties": {
    "weighting": {
      "type": "string",
      "enum": [
        "NONE",
        "BUDGET",
        "IMPRESSION"
      ]
    },
    "creative_groups": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "concept_id": {
            "type": "integer"
          },
          "percent": {
            "type": "number",
            "format": "float",
            "description": "Sum of all percents provided inside group must be equal to 100",
            "minimum": 0,
            "maximum": 100,
            "exclusiveMinimum": false
          }
        },
        "required": [
          "concept_id",
          "percent"
        ]
      }
    }
  }
}