{
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "instanceName": {
            "type": "string",
            "minLength": 1
        },
        "storageType": {
            "type": "string",
            "minLength": 1
        },
        "sessionSecret": {
            "type": "string",
            "minLength": 1
        },
        "externalStoreFilePath": {
            "type": "string",
            "minLength": 1
        },
        "defaultRetryTimeout": {
            "type": "integer",
            "minimum": 1
        },
        "backOffMultiplier": {
            "type": "integer",
            "minimum": 1
        },
        "skipCertHostnameValidation": {
            "type": "boolean"
        },
        "rejectUnauthorized": {
            "type": "boolean"
        }
    },
    "required": [
        "instanceName",
        "storageType",
        "sessionSecret"
    ]
}
