RevContent · Schema

Boost

A RevContent boost (campaign) resource representing a native advertising campaign.

Native AdvertisingContent RecommendationAd NetworkPublisher MonetizationProgrammatic Advertising

Properties

Name Type Description
id integer Unique boost identifier
name string Boost (campaign) name
status string Current campaign status
bid number CPC bid amount in USD (minimum $0.01)
budget number Campaign budget in USD
traffic_type integer Traffic type identifier
schedule_start string Campaign start date/time
schedule_end string Campaign end date/time
devices array Device category IDs targeted by this boost
dma_codes array DMA codes for geo-targeting
zip_codes array Zip codes for geo-targeting
View JSON Schema on GitHub

JSON Schema

boost.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.revcontent.io/schemas/boost",
  "title": "Boost",
  "description": "A RevContent boost (campaign) resource representing a native advertising campaign.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique boost identifier"
    },
    "name": {
      "type": "string",
      "description": "Boost (campaign) name"
    },
    "status": {
      "type": "string",
      "enum": ["active", "paused", "deleted"],
      "description": "Current campaign status"
    },
    "bid": {
      "type": "number",
      "minimum": 0.01,
      "description": "CPC bid amount in USD (minimum $0.01)"
    },
    "budget": {
      "type": "number",
      "description": "Campaign budget in USD"
    },
    "traffic_type": {
      "type": "integer",
      "description": "Traffic type identifier"
    },
    "schedule_start": {
      "type": "string",
      "format": "date-time",
      "description": "Campaign start date/time"
    },
    "schedule_end": {
      "type": "string",
      "format": "date-time",
      "description": "Campaign end date/time"
    },
    "devices": {
      "type": "array",
      "items": { "type": "integer" },
      "description": "Device category IDs targeted by this boost"
    },
    "dma_codes": {
      "type": "array",
      "items": { "type": "string" },
      "description": "DMA codes for geo-targeting"
    },
    "zip_codes": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Zip codes for geo-targeting"
    }
  },
  "required": ["id", "name", "status", "bid", "budget"]
}