github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/pwbid.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "PubWise (pwbid) Adapter Params", 4 "description": "A schema which validates params accepted by the PubWise (pwbid) adapter", 5 "type": "object", 6 "properties": { 7 "siteId": { 8 "type": "string", 9 "description": "The site ID provided by the PubWise system" 10 }, 11 "bidFloor": { 12 "type": "number", 13 "description": "Value to pass as the bidfloor for this bid" 14 }, 15 "isTest": { 16 "type": "boolean", 17 "description": "A boolean to indicate 100% fill test placement request" 18 } 19 }, 20 "required": ["siteId"] 21 }