I noticed that there are 4 fields representing the same thing: launch date. Why do we need them, if we could use one:unix time or date UTC?
{
"flight_number": 50,
"mission_name": "KoreaSat 5A",
"mission_id": [],
"launch_year": "2017", // 1) year we could extract from launch_date_unix
"launch_date_unix": 1509392040, // 2) I suggest to use this
"launch_date_utc": "2017-10-30T19:34:00.000Z", // 3) or use this
"launch_date_local": "2017-10-30T15:34:00-04:00", // 4) why do we need local time?
"is_tentative": false,
\\ ...
}