Is Airport Authority
Boolean/code flag indicating whether the vendor’s governmental entity type is an airport authority. It identifies vendor site records classified under airport-authority ownership or governance, rather than describing the award itself.
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 awards to airport authority recipients
- Segment obligations by recipient government-entity subtype
- Support compliance or oversight analyses of quasi-governmental vendors
Common Mistakes
- Interpreting the flag as describing the place of performance rather than the vendor entity type
- Assuming every non-1 value means false without verifying the dataset’s coding rules
Query Guidance
Use this field in WHERE clauses to isolate airport authority records, but first verify whether the dataset stores boolean values as 1/0, true/false, or text codes. When aggregating, group by the normalized flag and pair it with other vendor-site government-entity indicators to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS is_airport_authority
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.