Skip to content

Commit 21bc974

Browse files
Merge pull request #3 from intersystems-community/lowercase
Name of server in lowercase
2 parents e08d8a2 + 11c11ae commit 21bc974

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,34 +67,34 @@
6767
"markdownDescription": "[InterSystems](https://www.intersystems.com)® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
6868
"scope": "resource",
6969
"default": {
70-
"IRIS": {
70+
"iris": {
7171
"webServer": {
7272
"scheme": "http",
7373
"host": "127.0.0.1",
7474
"port": 52773
7575
},
7676
"description": "Connection to default local InterSystems IRIS™ installation. Delete if unwanted."
7777
},
78-
"CACHE": {
78+
"cache": {
7979
"webServer": {
8080
"scheme": "http",
8181
"host": "127.0.0.1",
8282
"port": 57772
8383
},
8484
"description": "Connection to default local InterSystems Caché® installation. Delete if unwanted."
8585
},
86-
"ENSEMBLE": {
86+
"ensemble": {
8787
"webServer": {
8888
"scheme": "http",
8989
"host": "127.0.0.1",
9090
"port": 57772
9191
},
9292
"description": "Connection to default local InterSystems Ensemble® installation. Delete if unwanted."
9393
},
94-
"/default": "IRIS"
94+
"/default": "iris"
9595
},
9696
"patternProperties": {
97-
"^[A-Za-z0-9-._~]+$": {
97+
"^[a-z0-9-._~]+$": {
9898
"type": "object",
9999
"description": "A server definition, with properties that specify how to connect to it.",
100100
"properties": {

0 commit comments

Comments
 (0)