I have a local database of airports, runways, navaids, and fixes that I would like to keep in sync. I have initially populated tables with this data from CSV files and now I want to check if there are any new objects or if any of them have been updated. It looks like this is a description of the airport interface but I don't know how to get the data I need. I was able to run a query and get this for output https://services6.arcgis.com/ssFJjBXIUyZDrSYZ/arcgis/rest/services/US_Airport/FeatureServer/0/query?where=1%3D1&outFields=*&outSR=4326&f=json and saved it as a file but it would not import as a database table. It looks like there is a section at the beginning that describes the data fields and what type they are. The fields I need are airport identifier (ex: clt), elevation, longitude and latitude degrees, minutes and seconds.
Maybe I am not even looking in the right place. If so, I would appreciate some direction and maybe sample code.