Skip to content

Commit

Permalink
Update kidoz properties to type string (prebid#1808)
Browse files Browse the repository at this point in the history
Remove definitions object from schema and define types and other parameters directly in properties objects to ensure compatibility with more downstream systems that use this schema.
  • Loading branch information
agilfix authored and Dan Barnett committed May 11, 2021
1 parent b17228f commit a34bfa9
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions static/bidder-params/kidoz.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,18 @@
"type": "object",
"properties": {
"access_token": {
"$ref": "#/definitions/non-empty-string",
"type": "string",
"minLength": 1,
"description": "Kidoz access_token"
},
"publisher_id": {
"$ref": "#/definitions/non-empty-string",
"description": "Kidoz publisher_id"
}
},
"definitions": {
"non-empty-string": {
"type": "string",
"minLength": 1
"minLength": 1,
"description": "Kidoz publisher_id"
}
},
"required": [
"access_token",
"publisher_id"
]
}
}

0 comments on commit a34bfa9

Please sign in to comment.