geography.transportation.iata_codeInternational Air Transport Association airport code (3 letters). Identifies airports for flight bookings and schedules (e.g., JFK, LAX, CDG).
$ finetype infer -i "JFK"
→ geography.transportation.iata_codeSELECT finetype('JFK');
-- → 'geography.transportation.iata_code'UPPER(CAST({col} AS VARCHAR))-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'geography.transportation.iata_code';{
"$id": "https://meridian.online/schemas/geography.transportation.iata_code",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "International Air Transport Association airport code (3 letters). Identifies airports for flight bookings and schedules (e.g., JFK, LAX, CDG).",
"examples": [
"JFK",
"LAX",
"CDG",
"LHR",
"NRT"
],
"pattern": "^[A-Z]{3}$",
"title": "IATA Airport Code",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "UPPER(CAST({col} AS VARCHAR))"
}JFKLAXCDGLHRNRT