openrtb
Version:
A Javascript library which builds and validates OpenRTB objects
29 lines (26 loc) • 422 B
JavaScript
var seatbidSchema = require('./seatbid');
var schema = {
"properties": {
"id": {
"type": "string"
},
"seatbid": seatbidSchema,
"bidId": {
"type": "string"
},
"cur":{
"type": "string"
},
"customdata":{
"type": "string"
},
"nbr":{
"type": "integer"
},
"ext":{
"type": "object"
}
},
"required": ["id"]
}
module.exports = schema;