-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
71 lines (71 loc) · 1.33 KB
/
db.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
{
"databases": [
{
"id": 1,
"name": "Database 1",
"url": "https://db1.example.com",
"username": "user1",
"password": "password1",
"type": "Snowflake"
},
{
"id": 2,
"name": "Database 2",
"url": "https://db2.example.com",
"username": "user2",
"password": "password2",
"type": "Trino"
},
{
"id": 3,
"name": "Database 3",
"url": "https://db3.example.com",
"username": "user3",
"password": "password3",
"type": "MySQL"
}
],
"tables": [
{
"id": 1,
"databaseId": 1,
"name": "Table 1",
"description": "This is table 1."
},
{
"id": 2,
"databaseId": 2,
"name": "Table 2",
"description": "This is table 2."
},
{
"id": 3,
"databaseId": 3,
"name": "Table 3",
"description": "This is table 3."
}
],
"columns": [
{
"id": 1,
"tableId": 1,
"name": "Column 1",
"dataType": "int",
"description": "This is column 1."
},
{
"id": 2,
"tableId": 2,
"name": "Column 2",
"dataType": "int",
"description": "This is column 2."
},
{
"id": 3,
"tableId": 3,
"name": "Column 3",
"dataType": "int",
"description": "This is column 3."
}
]
}