github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/smaato.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Smaato Adapter Params", 4 "description": "A schema which validates params accepted by the Smaato adapter", 5 "type": "object", 6 "properties": { 7 "publisherId": { 8 "type": "string", 9 "description": "A unique identifier for this impression within the context of the bid request" 10 }, 11 "adspaceId": { 12 "type": "string", 13 "description": "Identifier for specific ad placement is SOMA `adspaceId`" 14 }, 15 "adbreakId": { 16 "type": "string", 17 "description": "Identifier for specific adpod placement is SOMA `adbreakId`" 18 } 19 }, 20 "required": [ 21 "publisherId" 22 ], 23 "anyOf": [ 24 { 25 "required": [ 26 "adspaceId" 27 ] 28 }, 29 { 30 "required": [ 31 "adbreakId" 32 ] 33 } 34 ] 35 }