-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy path1-0-0
63 lines (63 loc) · 1.43 KB
/
1-0-0
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
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for a context entity with information about the currently played ad",
"self": {
"vendor": "com.snowplowanalytics.snowplow.media",
"name": "ad",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"name": {
"description": "Friendly name of the ad.",
"type": [
"null",
"string"
],
"maxLength": 4096
},
"adId": {
"type": "string",
"maxLength": 256,
"description": "Unique identifier for the ad."
},
"creativeId": {
"type": [
"string",
"null"
],
"maxLength": 4096,
"description": "The ID of the ad creative."
},
"podPosition": {
"type": [
"integer",
"null"
],
"description": "The position of the ad within the ad break, starting with 1.",
"minimum": 1,
"maximum": 65535
},
"duration": {
"type": [
"number",
"null"
],
"description": "Length of the video ad in seconds.",
"minimum": 0,
"maximum": 2147483647
},
"skippable": {
"type": [
"boolean",
"null"
],
"description": "Indicating whether skip controls are made available to the end user."
}
},
"additionalProperties": false,
"required": [
"adId"
]
}