github.com/prebid/prebid-server/v2@v2.18.0/router/bidder_params_tests/appnexus.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Sample schema", 4 "description": "A sample schema to test the bidder/params endpoint", 5 "type": "object", 6 "properties": { 7 "integer_param": { 8 "type": "integer", 9 "minimum": 1, 10 "description": "A customer id" 11 }, 12 "string_param_1": { 13 "type": "string", 14 "minLength": 1, 15 "description": "Text with blanks in between" 16 }, 17 "string_param_2": { 18 "type": "string", 19 "minLength": 1, 20 "description": "Text_with_no_blanks_in_between" 21 } 22 }, 23 "required": [ 24 "integer_param", 25 "string_param_2" 26 ] 27 }