Silveredge · Schema

Silverpush OpenRTB Bidder Adapter

A schema which validates params accepted by the SilverPush adapter

CompanyAdvertisingAdTechContextual IntelligenceArtificial IntelligenceVideo AdvertisingMarketingProgrammatic AdvertisingOpenRTBPrebidSupply Side PlatformCTVMobile AdvertisingBrand Safety

Properties

Name Type Description
publisherId string Publisher id provided by silverpush
bidfloor number Minimum price in USD. bidFloor applies to a specific unit. For example, use the following value to set a $1.50 floor: 1.50.
View JSON Schema on GitHub

JSON Schema

silveredge-prebid-bidder-params.json Raw ↑
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "Silverpush OpenRTB Bidder Adapter",
    "description": "A schema which validates params accepted by the SilverPush adapter",
    "type": "object",
  
    "properties": { 
      "publisherId": {
         "type":"string",
         "description": "Publisher id provided by silverpush"
      },
      "bidfloor": {
         "type":"number", 
         "description": "Minimum price in USD. bidFloor applies to a specific unit. For example, use the following value to set a $1.50 floor: 1.50."
      }
    },
  
    "required": ["publisherId"]
  }