From b975c52b07ef135e361c3ed918318a18254ca2d1 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Tue, 2 Jul 2024 18:02:12 +0200 Subject: [PATCH] Allow key/certificate to be null for pem (#3874) Signed-off-by: 1000TurquoisePogs --- schemas/zowe-yaml-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/zowe-yaml-schema.json b/schemas/zowe-yaml-schema.json index 879e205546..5add61892c 100644 --- a/schemas/zowe-yaml-schema.json +++ b/schemas/zowe-yaml-schema.json @@ -800,11 +800,11 @@ "description": "Certificate in PEM format.", "properties": { "key": { - "type": "string", + "type": [ "string", "null" ], "description": "Path to the certificate private key stored in PEM format." }, "certificate": { - "type": "string", + "type": [ "string", "null" ], "description": "Path to the certificate stored in PEM format." }, "certificateAuthorities": {