github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/algorix.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "AlgoriX Adapter Params", 4 "description": "A schema which validates params accepted by the AlgoriX adapter", 5 "type": "object", 6 "properties": { 7 "sid": { 8 "type": "string", 9 "description": "Your Sid", 10 "minLength": 1 11 }, 12 "token": { 13 "type": "string", 14 "description": "Your Token", 15 "minLength": 1 16 }, 17 "placementId": { 18 "type": "string", 19 "description": "An ID which identifies this placement of the impression" 20 }, 21 "appId": { 22 "type": "string", 23 "description": "An ID which identifies this app of the impression" 24 }, 25 "region": { 26 "type": "string", 27 "enum": ["APAC", "USE", "EUC"], 28 "description": "Server region for PBS request, null for global, APAC for SG Region, USE for US Region, EUC for EU Region." 29 } 30 }, 31 "required": ["sid", "token"] 32 }