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