-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabox-manifest.json
More file actions
48 lines (46 loc) · 1019 Bytes
/
databox-manifest.json
File metadata and controls
48 lines (46 loc) · 1019 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
40
41
42
43
44
45
46
47
48
{
"manifest-version": 1,
"name": "spotify-history-driver",
"databox-type": "driver",
"version": "latest",
"description": "A driver to gather information about your spotify play history.",
"author": "Edgar Bodiaj <Edgar.Bodiaj@nottingham.ac.uk>",
"license": "MIT",
"tags": [
"spotify",
"history",
"driver",
"databox"
],
"homepage": "https://github.com/EdgarBodiaj/spotTest",
"repository": {
"type": "git",
"url": "git+https://github.com/EdgarBodiaj/spotTest/"
},
"external-whitelist": [
{
"urls": [
"https://accounts.spotify.com/api/token",
"https://accounts.spotify.com/authorize",
"https://api.spotify.com"
]
}
],
"resource-requirements": {
"store": "core-store"
},
"provides": [
{
"data-source-type": "spotify::playlistData",
"description": "Spotify Playlist Data",
"store-type": "kv",
"schema": {}
},
{
"data-source-type": "spotify::topArtists",
"description": "Spotify top artists Data",
"store-type": "kv",
"schema": {}
}
]
}