Skip to content

Commit

Permalink
Merge pull request #3 from intersystems-community/lowercase
Browse files Browse the repository at this point in the history
Name of server in lowercase
  • Loading branch information
gjsjohnmurray authored Jun 30, 2020
2 parents e08d8a2 + 11c11ae commit 21bc974
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,34 +67,34 @@
"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.",
"scope": "resource",
"default": {
"IRIS": {
"iris": {
"webServer": {
"scheme": "http",
"host": "127.0.0.1",
"port": 52773
},
"description": "Connection to default local InterSystems IRIS™ installation. Delete if unwanted."
},
"CACHE": {
"cache": {
"webServer": {
"scheme": "http",
"host": "127.0.0.1",
"port": 57772
},
"description": "Connection to default local InterSystems Caché® installation. Delete if unwanted."
},
"ENSEMBLE": {
"ensemble": {
"webServer": {
"scheme": "http",
"host": "127.0.0.1",
"port": 57772
},
"description": "Connection to default local InterSystems Ensemble® installation. Delete if unwanted."
},
"/default": "IRIS"
"/default": "iris"
},
"patternProperties": {
"^[A-Za-z0-9-._~]+$": {
"^[a-z0-9-._~]+$": {
"type": "object",
"description": "A server definition, with properties that specify how to connect to it.",
"properties": {
Expand Down

0 comments on commit 21bc974

Please sign in to comment.