forked from prebid/prebid-server-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedad.json
More file actions
65 lines (65 loc) · 2.18 KB
/
Copy pathfeedad.json
File metadata and controls
65 lines (65 loc) · 2.18 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "FeedAd Adapter Params",
"description": "A schema which validates params accepted by the FeedAd adapter",
"properties": {
"clientToken": {
"description": "Your FeedAd client token. Check your FeedAd admin panel.",
"minLength": 1,
"type": "string"
},
"decoration": {
"description": "A decoration to apply to the ad slot. See our documentation at https://docs.feedad.com/web/feed_ad/#decorations",
"type": "string"
},
"placementId": {
"description": "A FeedAd placement ID of your choice",
"minLength": 1,
"pattern": "^(([a-z0-9])+[-_]?)+$",
"type": "string"
},
"sdkOptions": {
"description": "Optional: Only required if you are using Prebid.JS in an app environment (aka hybrid app). See our documentation at https://docs.feedad.com/web/configuration/#hybrid-app-config-parameters",
"properties": {
"advertising_id": {
"type": "string",
"description": "Optional: The advertising id of the device or user (e.g. Apple IDFA, Google Advertising Client Id). We highly recommend setting this parameter to maximize your fill rate."
},
"app_name": {
"type": "string",
"description": "The name of your app. This name will identify your app within the FeedAd admin dashboard."
},
"bundle_id": {
"type": "string",
"description": "The unique package name or bundle id of your app."
},
"hybrid_app": {
"type": "boolean",
"description": "Boolean indicating that the SDK is loaded within a hybrid app."
},
"hybrid_platform": {
"description": "String identifying the device platform.",
"enum": [
"",
"android",
"ios",
"windows"
]
},
"limit_ad_tracking": {
"type": "boolean",
"description": "Whether the app's user has limited ad tracking enabled."
}
},
"type": [
"object",
"null"
]
}
},
"required": [
"clientToken",
"placementId"
],
"type": "object"
}