MediaMath · Schema

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
operator string
target_value_id integer
code string
View JSON Schema on GitHub

JSON Schema

campaigns-strategy_location.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "",
  "type": "object",
  "properties": {
    "operator": {
      "type": "string",
      "enum": [
        "AND",
        "OR"
      ],
      "default": "OR"
    },
    "target_value_id": {
      "type": "integer",
      "format": "int32",
      "example": 87
    },
    "code": {
      "type": "string",
      "enum": [
        "DMAX",
        "REGN",
        "CITY",
        "COUNTRY"
      ]
    }
  },
  "required": [
    "target_value_id",
    "code"
  ]
}