-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathauth2-active.json
More file actions
65 lines (65 loc) · 1.99 KB
/
auth2-active.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"@context": "http://iiif.io/api/presentation/3/context.json",
"id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json",
"type": "Manifest",
"label": {
"en": [
"An actively authorized video"
]
},
"items": [
{
"id": "https://auth.example.org/my-video1",
"type": "Canvas",
"label": {
"en": [
"Canvas with a single IIIF video"
]
},
"height": 3024,
"width": 4032,
"items": [
{
"id": "https://auth.example.org/my-video/page",
"type": "AnnotationPage",
"items": [
{
"id": "https://auth.example.org/my-video/annotation",
"type": "Annotation",
"motivation": "painting",
"body": {
"id": "https://auth.example.org/my-video.mp4",
"type": "Video",
"service": [
{
"id": "https://auth.example.org/probe/my-video",
"type": "AuthProbeService2",
"service" : [
{
"id": "https://auth.example.org/login",
"type": "AuthAccessService2",
"profile": "active",
"label": { "en": [ "Login to Example Institution" ] },
"service" : [
{
"id": "https://auth.example.org/token",
"type": "AuthAccessTokenService2"
},
{
"id": "https://auth.example.org/logout",
"type": "AuthLogoutService2",
"label": { "en": [ "Logout from Example Institution" ] }
}
]
}
]
}
]
}
}
]
}
]
}
]
}