Collection<Object> history = cell.getHistory();
Class<?> columnType = cell.getType();
DataType columnFormat = _formatter.getDataType(columnType);
Map<String, Object> valueMap = Maps.newHashMap();
AggregatedExecutionLog executionLog = cell.getExecutionLog();
LogLevel logLevel = maxLogLevel(executionLog);
valueMap.put(VALUE, formattedValue);
if (columnFormat == UNKNOWN) {
// if the the column type isn't known then send the type with the value
valueMap.put(TYPE, _formatter.getDataTypeForValue(cellValue, cellValueSpec).name());