It's possible that the timestamp format in your JSON file is not recognized by ADF.
Try the following :
SELECT FROM_UNIXTIME(timestamp_column) AS datetime_column FROM table_name
If the datetime values still cannot be read by ADF, try casting them to a different format using the DATE_FORMAT
:
SELECT DATE_FORMAT(datetime_column, 'YYYY-MM-DD HH:MM:SS') AS formatted_datetime_column FROM table_name