Vorrei definire certificate
e privateKey
obbligatorio quando il flag secure
è impostato su true. È possibile raggiungere questo obiettivo?Effettuare un'opzione facoltativa richiesta quando ne è stata definita un'altra in JSON Schema
{
type: 'object',
properties: {
'secure': {
title: 'Serve files over HTTPS',
description: 'Flag telling whether to serve contents over HTTPS and WSS',
type: 'boolean',
default: false
},
'certificate': {
title: 'Certificate file',
description: 'Location of the certificate file',
type: 'string'
},
'privateKey': {
title: 'Private key file',
description: 'Location of the private key file',
type: 'string'
}
}