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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Beachfront Adapter Params",
     4    "description": "A schema which validates params accepted by the Beachfront adapter",
     5    "type": "object",
     6    "properties": {
     7      "appId": {
     8        "type": "string",
     9        "description": "The id of an inventory target. This can only be used in requests that contain one media type. It will be applied to all imps in the request."
    10      },
    11      "appIds": {
    12        "type" : "object",
    13        "description": "An object that specifies appIds for specific media types. This can be used for either single media type requests or multiple.",
    14        "properties": {
    15          "video" : {
    16            "type": "string",
    17            "title": "Video appId",
    18            "description": "An appId string that will be applied to video requests in this imp."
    19          },
    20          "banner" : {
    21            "type": "string",
    22            "title": "Banner appId",
    23            "description": "An appId string that will be applied to banner requests in this imp."
    24          }
    25        },
    26        "anyOf":[
    27          {"required":["video"]},
    28          {"required":["banner"]}
    29        ] 
    30      },
    31      "bidfloor": {
    32        "type": "number",
    33        "description": "The price floor for the bid. Will override the bidfloor set for the impression. Always in USD, regardless of the value of the currency set for the impression."
    34      },
    35      "videoResponseType": {
    36        "type": "string",
    37        "description": "By default the video response will be an AdM element containing VAST 3.0 markup including tracking, click through, and mediafile elements pointing to mp4, webm or other playable media files or Vpaid media as configured for the exchange at beachfront.io. Optionally, set this to 'nurl' to receive a URI pointing to VAST 3.0 markup which will contain a mediafile pointing to a beachfront neptune javascript video player which will load your video and take care of tracking, etc. Regardless of which format is selected, the id of the returned impression will be the provided impression id (imp[{'id'...},...] in the request) with the format appended. The impression id will be returned unchanged as 'impid'. So if you indicate 'nurl', and an impression id 'someImp', the returned impression will have an 'impid' value of 'someImp', and the 'id' value 'someImpNurlVideo'. This is to differentiate the object in the case that a request includes both video and banner elements. Setting videoResponseType to any other string will have no effect and the default format (AdM) will be returned."
    38      }
    39    },
    40  
    41    "oneOf": [
    42      { "required": ["appIds"] },
    43      { "required": ["appId"] }
    44    ]
    45  }