MediaMath · Schema

campaign_base

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
archived boolean
status boolean
name string
service_type string
io_name string
io_reference_num string
is_programmatic_guaranteed boolean
political boolean
source_campaign_id integer
zone_name string
viewability object
identity object
ad_server object
pacing object
attribution object
vendor_contracts array
mfa_avoidance string
targeting_identity_level string
View JSON Schema on GitHub

JSON Schema

campaigns-campaign_base.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "campaign_base",
  "type": "object",
  "properties": {
    "archived": {
      "type": "boolean",
      "default": false
    },
    "status": {
      "type": "boolean",
      "default": true
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "service_type": {
      "type": "string",
      "enum": [
        "SELF",
        "MANAGED"
      ]
    },
    "io_name": {
      "type": "string",
      "maxLength": 256
    },
    "io_reference_num": {
      "type": "string",
      "maxLength": 32
    },
    "is_programmatic_guaranteed": {
      "type": "boolean"
    },
    "political": {
      "type": "boolean",
      "default": false
    },
    "source_campaign_id": {
      "type": "integer",
      "nullable": true,
      "format": "int32",
      "example": 7
    },
    "zone_name": {
      "type": "string",
      "minLength": 1
    },
    "viewability": {
      "$ref": "#/components/schemas/campaign_viewability"
    },
    "identity": {
      "$ref": "#/components/schemas/campaign_identity"
    },
    "ad_server": {
      "$ref": "#/components/schemas/campaign_ad_server"
    },
    "pacing": {
      "$ref": "#/components/schemas/campaign_pacing"
    },
    "attribution": {
      "$ref": "#/components/schemas/campaign_attribution"
    },
    "vendor_contracts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/vendor_contract_base"
      }
    },
    "mfa_avoidance": {
      "type": "string",
      "enum": [
        "INHERIT",
        "ALLOW_ALL",
        "EXCLUDE_MFA"
      ]
    },
    "targeting_identity_level": {
      "type": "string",
      "enum": [
        "INHERIT",
        "INDIVIDUAL",
        "HOUSEHOLD"
      ],
      "default": "INHERIT"
    }
  }
}