github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/bizzclick.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Bizzclick Adapter Params", 4 "description": "A schema which validates params accepted by the Bizzclick adapter", 5 "type": "object", 6 "properties": { 7 "accountId": { 8 "type": "string", 9 "description": "Account id", 10 "minLength": 1 11 }, 12 "sourceId": { 13 "type": "string", 14 "description": "Source id", 15 "minLength": 1 16 }, 17 "host": { 18 "type": "string", 19 "description": "Server region", 20 "minLength": 1 21 }, 22 "placementId": { 23 "type": "string", 24 "description": "Deprecated, use sourceId instead", 25 "minLength": 1 26 } 27 }, 28 "oneOf": [ 29 { 30 "required": [ 31 "accountId", 32 "placementId" 33 ] 34 }, 35 { 36 "required": [ 37 "accountId", 38 "sourceId" 39 ] 40 } 41 ] 42 }