We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ae045 commit 962f141Copy full SHA for 962f141
versions/3.0.md
@@ -386,10 +386,10 @@ The following shows how variables can be used for a server configuration:
386
},
387
"port": {
388
"enum": [
389
- 8443,
390
- 443
+ "8443",
+ "443"
391
],
392
- "default": 8443
+ "default": "8443"
393
394
"basePath": {
395
"default": "v2"
@@ -411,9 +411,9 @@ servers:
411
description: this value is assigned by the service provider, in this example `gigantic-server.com`
412
port:
413
enum:
414
- - 8443
415
- - 443
416
- default: 8443
+ - '8443'
+ - '443'
+ default: '8443'
417
basePath:
418
# open meaning there is the opportunity to use special base paths as assigned by the provider, default is `v2`
419
default: v2
0 commit comments