From d69adfa098a7f9b9868c7332abb19a669933999b Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 26 Jun 2024 18:02:53 +0200 Subject: [PATCH] Allow key/certificate to be null for pem 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 cd8c1d4495..4f3c0f77ca 100644 --- a/schemas/zowe-yaml-schema.json +++ b/schemas/zowe-yaml-schema.json @@ -790,11 +790,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": {