-
Notifications
You must be signed in to change notification settings - Fork 1
/
driver-twitter-manifest.json
72 lines (69 loc) · 1.56 KB
/
driver-twitter-manifest.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
{
"manifest-version": 1,
"name": "driver-twitter",
"version": "0.3.1",
"description": "A simple Databox driver to stream twitter data",
"author": "Anthony Brown <[email protected]> ()",
"license": "MIT",
"databox-type": "driver",
"tags": [
"store",
"blob",
"db",
"native",
"json",
"timeseries"
],
"homepage": "https://github.com/me-box/driver-twitter",
"repository": {
"type": "git",
"url": "git+https://github.com/me-box/driver-twitter.git"
},
"external-whitelist": [
{
"urls": [
"https://api.twitter.com/",
"https://stream.twitter.com/1.1/",
"https://userstream.twitter.com/1.1/",
"https://sitestream.twitter.com/1.1/",
"https://upload.twitter.com/1.1/"
],
"description": "Used by node package `twit` to access Twitter API"
}
],
"resource-requirements": {
"store": "core-store"
},
"provides": [
{
"data-source-type": "twitterUserTimeLine",
"description": "Twitter user timeline data",
"store-type": "tsblob",
"schema": {}
},
{
"data-source-type": "twitterHashTagStream",
"description": "Twitter user hashtag data",
"store-type": "tsblob",
"schema": {}
},
{
"data-source-type": "twitterDirectMessage",
"description": "Twitter users direct messages",
"store-type": "tsblob",
"schema": {}
},
{
"data-source-type": "twitterFavourites",
"description": "Twitter users favourites tweets",
"store-type": "tsblob",
"schema": {}
},
{
"data-source-type": "Test Actuator",
"description": "testActuator",
"store-type": "tsblob",
"schema": {}
}
]
}