Historical Flights in UserDetails.aspx

Already discussed this with Cam but the goal here is to be able to see a user’s past 90 or so flights, maybe structured like so:

"pastFlights": [
    {
        "departure":"ICAO",
        "arrival":"ICAO",
        "date":"04/04/2020",
        "aircraft":"AircraftID",
        "flighttime":{
            "night":"1:23",
            "day":"2:46",
        },
        "violations":[
            {
                "reason":"Overspeed (In Flight)",
                "datetime":"2020/04/03 21:10 UTC"
            }
        ],
        "reports":[
            {
                "reportedBy":"IFATC Some Guy",
                "reason":"Blocking an active taxiway",
                "datetime":"2020/04/03 23:13 UTC"
            }
        ]
    }
]

And so on…

8 Likes

This would definitely be useful for VA purposes. Good way for VA staff to validate if the flight was actually flown by the VA Pilot.

2 Likes