-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconfig.schema.yaml
More file actions
39 lines (37 loc) · 967 Bytes
/
config.schema.yaml
File metadata and controls
39 lines (37 loc) · 967 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
---
connections:
type: "object"
required: true
patternProperties:
"^\\w+":
"$ref": "#/properties/connection"
additionalProperties: false
connection:
type: object
properties:
host:
description: "Database server to connect to. e.g. host.domain.tld"
type: string
required: false
username:
description: "Username for authentication"
type: string
required: false
password:
description: "Password of the specified username"
type: string
secret: true
required: false
database:
description: "Database to connect to, to run queries against."
type: string
required: true
port:
description: "Port to connect to database on. If Default leave blank"
type: integer
required: false
drivername:
description: "The type of database that is being connected to."
type: string
required: true
additionalProperties: false