Skip to content

Commit

Permalink
prebid#4 Update JSON Schema to match prebid.js consumable docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Neale Upstone authored and nealeu committed Feb 12, 2019
1 parent 1b694d7 commit ba70cfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions static/bidder-params/consumable.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@
"properties": {
"siteId": {
"type": "number",
"description": "An ID which identifies the site selling the impression",
"description": "The site ID from Consumable",
"pattern": "^[0-9]+$"
},
"networkId": {
"type": "number",
"description": "The network id",
"description": "The network ID from Consumable",
"pattern": "^[0-9]+$"
},
"unitId": {
"type": "number",
"description": "The unit id",
"description": "The unit ID from Consumable",
"pattern": "^[0-9]+$"
},
"unitName": {
"type": "string",
"description": "The unit name (expected to be a valid CSS class name)",
"description": "The unit name from Consumable (expected to be a valid CSS class name)",
"pattern": "^-?[_a-zA-Z]+[_a-zA-Z0-9-]*$"
}
},
"required": ["siteId", "unitId", "unitName"]
"required": ["siteId", "networkId","unitId", "unitName"]
}

0 comments on commit ba70cfd

Please sign in to comment.