github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/theadx.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Theadx Adapter Params", 4 "description": "A schema which validates params accepted by the theadx adapter", 5 "type": "object", 6 "properties": { 7 "pid": { 8 "type": ["integer", "string"], 9 "pattern": "^\\d+$", 10 "description": "An ID which identifies the partner selling the impression" 11 }, 12 "tagid": { 13 "type": ["integer", "string"], 14 "pattern": "^\\d+$", 15 "description": "An ID which identifies the placement selling the impression" 16 }, 17 "wid": { 18 "type": ["integer", "string"], 19 "description": "An ID which identifies the Theadx inventory source id" 20 } 21 22 }, 23 "anyOf":[ 24 { 25 "required": ["tagid"] 26 } 27 , { 28 "required": ["pid", "wid","tagid"] 29 } 30 31 ] 32 }