github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/smartx.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "smartclip.tv Adapter Params", 4 "description": "A schema which validates params accepted by the smartclip.tv adapter", 5 "type": "object", 6 "properties": { 7 "tagId": { 8 "type": "string", 9 "description": "Ad tag ID" 10 }, 11 "publisherId": { 12 "type": "string", 13 "description": "Publisher ID" 14 }, 15 "siteId": { 16 "type": "string", 17 "description": "Site ID" 18 }, 19 "appId": { 20 "type": "string", 21 "description": "App ID" 22 }, 23 "bundleId": { 24 "type": "string", 25 "description": "Bundle ID" 26 }, 27 "storeUrl": { 28 "type": "string", 29 "description": "AppStore URL" 30 } 31 }, 32 "oneOf": [ 33 { "required": ["siteId"] }, 34 { "required": ["appId"] } 35 ], 36 "required": ["tagId", "publisherId"] 37 }