private string FormatJsonValue(object value)
 {
     return(IsNull(value) ? "null" : _dataExportConverter.ToJson(value));
 }