github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/huaweiads.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "HuaweiAds Adapter Params", 4 "description": "A schema which validates params accepted by the HuaweiAds adapter", 5 "type": "object", 6 "properties": { 7 "publisherid": { 8 "type": "string", 9 "description": "publisher id", 10 "minLength": 1 11 }, 12 "signkey": { 13 "type": "string", 14 "description": "the sign key of publisher", 15 "minLength": 1 16 }, 17 "keyid": { 18 "type": "string", 19 "description": "the key id of publisher", 20 "minLength": 1 21 }, 22 "slotid": { 23 "type": "string", 24 "description": "ad slot id", 25 "minLength": 1 26 }, 27 "adtype": { 28 "type": "string", 29 "description": "ad type", 30 "minLength": 1 31 } 32 }, 33 "required": [ 34 "publisherid", 35 "signkey", 36 "keyid", 37 "slotid", 38 "adtype" 39 ] 40 }