-
Notifications
You must be signed in to change notification settings - Fork 0
/
common-videos.json
75 lines (75 loc) · 2.23 KB
/
common-videos.json
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
66
67
68
69
70
71
72
73
74
75
{
"title": "videos",
"type": "array",
"description": "Describes a list of video objects that are linked to a resource.",
"items": {
"type": "object",
"description": "A video object that is linked to an event or a place.",
"properties": {
"id": {
"$ref": "./common-string-uuid-readOnly.json",
"description": "The unique id of the video, generated by UiTdatabank."
},
"url": {
"$ref": "./common-string-uri-video.json"
},
"embedUrl": {
"$ref": "./common-string-uri-readOnly.json",
"description": "The url that can be used to embed the video inside an iFrame."
},
"language": {
"$ref": "./common-language.json",
"description": "The language of the video.\nCan be one of `nl`, `fr`, `de`, or `en`."
},
"copyrightHolder": {
"$ref": "./common-copyrightHolder.json",
"description": "The copyright holder of the video source."
}
},
"required": [
"url",
"language"
]
},
"examples": [
[
{
"id": "b504cf44-9ab8-4641-9934-38d1cc67242c",
"url": "https://www.youtube.com/watch?v=cEItmb_a20D",
"embedUrl": "https://www.youtube.com/embed/cEItmb_a20D",
"language": "nl",
"copyrightHolder": "publiq"
}
],
[
{
"id": "46e9ea9f-fc42-4759-a81b-4308467b7c35",
"url": "https://www.vimeo.com/54fdrg",
"embedUrl": "https://player.vimeo.com/video/54fdrg",
"language": "nl"
}
],
[
{
"id": "b504cf44-9ab8-4641-9934-38d1cc67242c",
"url": "https://www.youtube.com/watch?v=cEItmb_a20D",
"embedUrl": "https://www.youtube.com/embed/cEItmb_a20D",
"language": "nl",
"copyrightHolder": "publiq"
},
{
"id": "b504cf44-9ab8-4641-9934-38d1cc67242c",
"url": "https://www.youtube.com/shorts/ViOS7SeT0HE",
"embedUrl": "https://www.youtube.com/shorts/ViOS7SeT0HE",
"language": "nl",
"copyrightHolder": "publiq"
},
{
"id": "46e9ea9f-fc42-4759-a81b-4308467b7c35",
"url": "https://www.vimeo.com/54fdrg",
"embedUrl": "https://player.vimeo.com/video/54fdrg",
"language": "nl"
}
]
]
}