Is Airport Authority
Boolean or coded flag indicating whether the vendor entity is classified as an airport authority in the IDV vendor site details. It is a type-of-government-entity indicator tied to the vendor record, not a contract action outcome.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter IDVs involving airport authorities
- Segment vendor populations by government entity type
- Support compliance or reporting analysis for public-sector recipients
Common Mistakes
- Using it as a measure of award amount or contract performance
- Assuming all falsey or null values mean the vendor is definitively not an airport authority
Query Guidance
Use it in WHERE clauses to isolate airport-authority vendors, for example `WHERE isAirportAuthority = 1` when the field is stored as a boolean-style flag. If the column is coded text or numeric, confirm the actual stored values and include null-handling logic only when needed for your analysis.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS is_airport_authority
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.