Is Transit Authority
Boolean or coded flag indicating whether the vendor site is classified as a transit authority in the vendor's government-entity type details. A value such as 1/true typically means the site is identified as a transit authority; 0/false means it is not.
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 associated with transit authorities
- Segment vendor populations by government entity type
- Support compliance or policy analyses focused on public transportation entities
Common Mistakes
- Interpreting the flag as a funding amount or award status
- Assuming the field is populated for every record or that null means false
Query Guidance
In SQL, filter on the positive flag value after confirming the source encoding, for example WHERE isTransitAuthority = 1 or WHERE isTransitAuthority = 'Y'. Include null-handling logic explicitly and, if available, join to paired description fields to validate the coded value meaning.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS is_transit_authority
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority 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.