-
Notifications
You must be signed in to change notification settings - Fork 69
/
schema.json
110 lines (110 loc) · 2.89 KB
/
schema.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"connection-definition": {
"description": "Database connections",
"type": "array",
"items": {
"additionalProperties": false,
"type": "object",
"properties": {
"alias": {
"description": "Connection alias name. Optional",
"type": "string"
},
"driver": {
"description": "mysql, postgresql, sqlite3, mssql, h2. Required",
"type": "string",
"enum": [
"mysql",
"postgresql",
"sqlite3",
"mssql",
"h2"
]
},
"dataSourceName": {
"description": "Data source name",
"type": "string"
},
"proto": {
"description": "tcp, udp, unix",
"type": "string",
"enum": [
"tcp",
"udp",
"unix"
]
},
"user": {
"description": "User name",
"type": "string"
},
"passwd": {
"description": "Password",
"type": "string"
},
"host": {
"description": "Host",
"type": "string"
},
"port": {
"description": "Port",
"type": "number"
},
"path": {
"description": "unix socket path",
"type": "string"
},
"dbName": {
"description": "Database name",
"type": "string"
},
"params": {
"description": "Option params. Optional",
"type": "object",
"properties": {}
},
"sshConfig": {
"description": "ssh config. Optional",
"type": "object",
"properties": {
"host": {
"description": "ssh host. Required",
"type": "string"
},
"port": {
"description": "ssh port. Required",
"type": "number"
},
"user": {
"description": "ssh user. Optional",
"type": "string"
},
"privateKey": {
"description": "private key path. Required",
"type": "string"
},
"passPhrase": {
"description": "passPhrase. Optional",
"type": "string"
}
}
}
}
}
}
},
"properties": {
"lowercaseKeywords": {
"description": "Set to true to use lowercase keywords instead of uppercase.",
"type": "boolean"
},
"connections": {
"$ref": "#/definitions/connection-definition"
}
},
"title": "sqls",
"type": "object"
}