-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathgoldbach.json
More file actions
39 lines (39 loc) · 851 Bytes
/
goldbach.json
File metadata and controls
39 lines (39 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Goldbach Adapter Params",
"description": "A schema which validates params accepted by the Goldbach adapter",
"type": "object",
"properties": {
"publisherId": {
"type": "string",
"minLength": 1,
"description": "Publisher Environment ID"
},
"slotId": {
"type": "string",
"minLength": 1,
"description": "Slot Id"
},
"customTargeting": {
"type": "object",
"description": "Custom Targeting Parameters",
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
},
"required": [
"publisherId",
"slotId"
]
}