github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/tappx.json (about)

     1  {
     2  	"$schema": "http://json-schema.org/draft-04/schema#",
     3  	"title": "Tappx Adapter Params",
     4  	"description": "A schema which validates params accepted by the Tappx adapter",
     5  	"type": "object",
     6  	"properties": {
     7  		"host": {
     8  			"type": "string",
     9  			"description": "Tappx host"
    10  		},
    11  		"tappxkey": {
    12  			"type": "string",
    13  			"description": "An ID which identifies the adunit"
    14  		},
    15  		"mktag": {
    16  			"type": "string",
    17  			"description": "Minimum bid for this impression expressed in CPM (USD)"
    18  		},
    19  		"endpoint": {
    20  			"type": "string",
    21  			"description": "Endpoint provided to publisher"
    22  		},
    23  		"bidfloor": {
    24  			"type": "number",
    25  			"description": "Minimum bid for this impression expressed in CPM (USD)"
    26  		},
    27  		"bcid": {
    28  			"type": "array",
    29  			"description": "Block list of CID",
    30  			"items": {
    31  				"type": "string"
    32  			}
    33  		},
    34  		"bcrid": {
    35  			"type": "array",
    36  			"description": "Block list of CRID",
    37  			"items": {
    38  				"type": "string"
    39  			}
    40  		}
    41  	},
    42  	"required": ["tappxkey","endpoint"]
    43  }