-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabox-manifest.json
48 lines (48 loc) · 1.01 KB
/
databox-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
{
"manifest-version": 1,
"name": "driver-truelayer",
"version": "0.0.1",
"description": "A simple Databox driver to stream truelayer data",
"author": "Kleomenis Katevas <[email protected]> ()",
"license": "MIT",
"databox-type": "driver",
"tags": [
"store",
"blob",
"db",
"native",
"json",
"timeseries"
],
"homepage": "https://github.com/me-box/driver-truelayer",
"repository": {
"type": "git",
"url": "git+https://github.com/me-box/driver-truelayer.git"
},
"external-whitelist": [
{
"urls": [
"https://auth.truelayer.com",
"https://api.truelayer.com"
],
"description": "Access TrueLayer's API"
}
],
"resource-requirements": {
"store": "core-store"
},
"provides": [
{
"data-source-type": "truelayerUserBalance",
"description": "TrueLayer user Balance data",
"store-type": "tsblob",
"schema": {}
},
{
"data-source-type": "truelayerUserTransactions",
"description": "TrueLayer user Transactions data",
"store-type": "tsblob",
"schema": {}
}
]
}