MediaMath · Schema

new_strategy_group_list_item

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
id integer
entity_type string
name string
campaign_id integer
strategy_count integer Number of strategies attached to this group. Always present.
strategies array Attached strategies. Only present when ?with=strategies is set.
View JSON Schema on GitHub

JSON Schema

campaigns-new_strategy_group_list_item.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "new_strategy_group_list_item",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "entity_type": {
      "type": "string",
      "example": "strategy_group"
    },
    "name": {
      "type": "string"
    },
    "campaign_id": {
      "type": "integer",
      "format": "int32"
    },
    "strategy_count": {
      "type": "integer",
      "format": "int64",
      "readOnly": true,
      "description": "Number of strategies attached to this group. Always present.",
      "example": 3
    },
    "strategies": {
      "type": "array",
      "readOnly": true,
      "description": "Attached strategies. Only present when ?with=strategies is set.",
      "items": {
        "$ref": "#/components/schemas/new_strategy_group_strategy_embed"
      }
    }
  }
}