github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/mgid.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Mgid Adapter Params", 4 "description": "A schema which validates params accepted by the Mgid adapter", 5 6 "type": "object", 7 "properties": { 8 "accountId": { 9 "type": "string", 10 "description": "Internal Mgid account ID" 11 }, 12 "placementId": { 13 "type": "string", 14 "description": "optional internal Mgid Placement ID" 15 }, 16 "cur": { 17 "type": "string", 18 "description": "optional bidfloor currency" 19 }, 20 "currency": { 21 "type": "string", 22 "description": "optional bidfloor currency" 23 }, 24 "bidfloor": { 25 "type": "number", 26 "description": "optional minimum acceptable bid, in CPM, USD by default" 27 }, 28 "bidFloor": { 29 "type": "number", 30 "description": "optional minimum acceptable bid, in CPM, USD by default" 31 } 32 }, 33 "required": ["accountId"] 34 }