Is Airport Authority
Boolean or coded flag indicating whether the vendor site is classified as an airport authority in the Other Transaction Award vendor site type-of-government entity structure. It identifies records where the vendor’s government-entity category includes this specific designation rather than describing the award or vendor in general.
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 involving airport authorities
- Segment vendor populations by government-entity type
- Support compliance or recipient-type reporting
Common Mistakes
- Assuming 0 means false in every extract without checking the data dictionary or actual values
- Using this field as a proxy for the vendor’s legal structure rather than the site/entity classification
Query Guidance
In SQL, filter on the affirmative code or true value after confirming the extract’s representation, for example WHERE isAirportAuthority = 1 or WHERE isAirportAuthority = 'Y'. When building cohorts, combine this flag with related entity-type fields and handle NULL separately so absent data is not mistaken for a negative classification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS is_airport_authority
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isAirportAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.