github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/limelightDigital.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Limelight Digital Adapter Params", 4 "description": "A schema which validates params accepted by the Limelight Digital adapter", 5 "type": "object", 6 7 "properties": { 8 "host": { 9 "type": "string", 10 "description": "Ad network's RTB host", 11 "format": "hostname", 12 "pattern": "^.+\\..+$" 13 }, 14 "publisherId": { 15 "type": ["integer", "string"], 16 "description": "Publisher ID", 17 "minimum": 1, 18 "pattern": "^[1-9][0-9]*$" 19 } 20 }, 21 22 "required": ["host", "publisherId"] 23 }