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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Vox Adapter Params",
     4    "description": "A schema which validates params accepted by the Vox adapter",
     5    "type": "object",
     6  
     7    "properties": {
     8      "placementId": {
     9        "type": "string",
    10        "description": "Placement ID"
    11      },
    12      "imageUrl": {
    13        "type": "string",
    14        "description": "An URL of image on which banner should be put(InImage Ad format)."
    15      },
    16      "displaySizes": {
    17        "type": "array",
    18        "items": {
    19          "type": "string",
    20          "description": "<Width>x<Height>(Example: 123x90, 720x100)"
    21        },
    22        "description": "Display banner sizes which could be shown on top of image."
    23      }
    24    },
    25  
    26    "required": ["placementId"]
    27  }