From c2d3c5fa2d9f83c306522319eb62107aee9c865c Mon Sep 17 00:00:00 2001 From: Patrick Dawkins Date: Fri, 15 Aug 2025 09:30:26 -0400 Subject: [PATCH] schema: the TLS min_version and client_authentication properties can be null --- validator/schema/upsun.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/validator/schema/upsun.json b/validator/schema/upsun.json index 258c559..7943635 100644 --- a/validator/schema/upsun.json +++ b/validator/schema/upsun.json @@ -987,19 +987,21 @@ } }, "min_version": { - "type": "string", + "type": ["string", "null"], "enum": [ - "TLSv1.1", "TLSv1.0", + "TLSv1.1", + "TLSv1.2", "TLSv1.3", - "TLSv1.2" + null ], "title": "The minimum TLS version to support.", "description": "Note that TLS versions older than 1.2 are deprecated and are rejected by default.", "default": null }, "client_authentication": { - "type": "string", + "type": ["string", "null"], + "enum": ["request", "require", null], "description": "The type of client authentication to request.", "default": null },