github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/alkimi.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Alkimi Adapter Params", 4 "description": "A schema which validates params accepted by the Alkimi adapter", 5 "type": "object", 6 7 "properties": { 8 "token": { 9 "type": "string", 10 "description": "Publisher Token provided by Alkimi" 11 }, 12 "bidFloor": { 13 "type": "number", 14 "description": "The minimum CPM price in USD", 15 "minimum": 0 16 }, 17 "instl": { 18 "type": "number", 19 "description": "Set to 1 if using interstitial (default: 0)" 20 }, 21 "exp": { 22 "type": "number", 23 "description": "Advisory as to the number of seconds that may elapse between the auction and the actual impression" 24 } 25 }, 26 27 "required": ["token"] 28 }