Is Transit Authority
Boolean or coded flag indicating whether the vendor site is identified as a transit authority in the Other Transaction IDV record. It is a site-level government-entity attribute tied to the vendor location information, not a general vendor classification for all awards.
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 records where the vendor site is a transit authority
- Segment award volumes or obligations to transit-related entities
- Support compliance or oversight checks for government-entity recipients
Common Mistakes
- Treating the flag as a general vendor type instead of a vendor site attribute
- Assuming 0 always means false without checking the dataset's coded values
Query Guidance
Use this field in WHERE clauses to isolate transit-authority records, for example by matching the affirmative coded value in the local extract. If the table stores mixed encodings or paired description fields, normalize values first and then group or count on the standardized flag.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS is_transit_authority
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.