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.
2 parents 91e0357 + c2d3c5f commit 4c9f603Copy full SHA for 4c9f603
validator/schema/upsun.json
@@ -987,19 +987,21 @@
987
}
988
},
989
"min_version": {
990
- "type": "string",
+ "type": ["string", "null"],
991
"enum": [
992
- "TLSv1.1",
993
"TLSv1.0",
+ "TLSv1.1",
994
+ "TLSv1.2",
995
"TLSv1.3",
- "TLSv1.2"
996
+ null
997
],
998
"title": "The minimum TLS version to support.",
999
"description": "Note that TLS versions older than 1.2 are deprecated and are rejected by default.",
1000
"default": null
1001
1002
"client_authentication": {
1003
1004
+ "enum": ["request", "require", null],
1005
"description": "The type of client authentication to request.",
1006
1007
0 commit comments