openrtb
Version: 
A Javascript library which builds and validates OpenRTB objects
33 lines • 504 B
JavaScript
module.exports = {
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "bidfloor": {
      "type": "number"
    },
    "bidfloorcur": {
      "type": "string"
    },
    "at": {
      "type": "integer"
    },
    "wseat": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "wadomain": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ext": {
      "type": "object"
    }
  },
  "required": ["id"]
};