Is Transit Authority
Boolean or coded flag indicating whether the vendor site is identified as a transit authority. It represents the typeOfGovernmentEntity attribute at the vendor site level in the IDV record. If coded values are present, use the observed value set to confirm whether the field is stored as a true/false indicator or a short code.
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 associated with transit authorities
- Segment vendor base by government entity type
- Support compliance and entity-type reporting
Common Mistakes
- Interpreting the flag as a vendor industry code rather than a government-entity attribute
- Assuming 0 always means false without checking the dataset encoding
Query Guidance
Use this field in WHERE clauses to isolate transit-authority sites, and verify whether the stored values are boolean, numeric, or coded text before comparing. Example patterns include `WHERE isTransitAuthority = 1` or `WHERE isTransitAuthority = 'Y'`, depending on the extract; inspect distinct values first and apply the filter at the vendor-site level to avoid misclassification.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS is_transit_authority
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isTransitAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.