github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/rise.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Rise Adapter Params", 4 "description": "A schema which validates params accepted by the Rise adapter", 5 "type": "object", 6 "properties": { 7 "org": { 8 "type": "string", 9 "description": "The organization ID." 10 }, 11 "publisher_id": { 12 "type": "string", 13 "description": "Deprecated, use org instead." 14 }, 15 "placementId": { 16 "type": "string", 17 "description": "Placement ID." 18 } 19 }, 20 "oneOf": [ 21 { 22 "required": [ 23 "org" 24 ] 25 }, 26 { 27 "required": [ 28 "publisher_id" 29 ] 30 } 31 ] 32 }